Documentation
¶
Index ¶
- func RegisterTilesHandler(s server.Server, hdlr TilesHandler, opts ...server.HandlerOption) error
- type GetRequest
- func (*GetRequest) Descriptor() ([]byte, []int)
- func (m *GetRequest) GetX() int32
- func (m *GetRequest) GetY() int32
- func (m *GetRequest) GetZ() int32
- func (*GetRequest) ProtoMessage()
- func (m *GetRequest) Reset()
- func (m *GetRequest) String() string
- func (m *GetRequest) XXX_DiscardUnknown()
- func (m *GetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *GetRequest) XXX_Merge(src proto.Message)
- func (m *GetRequest) XXX_Size() int
- func (m *GetRequest) XXX_Unmarshal(b []byte) error
- type GetResponse
- func (*GetResponse) Descriptor() ([]byte, []int)
- func (m *GetResponse) GetFile() []byte
- func (*GetResponse) ProtoMessage()
- func (m *GetResponse) Reset()
- func (m *GetResponse) String() string
- func (m *GetResponse) XXX_DiscardUnknown()
- func (m *GetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *GetResponse) XXX_Merge(src proto.Message)
- func (m *GetResponse) XXX_Size() int
- func (m *GetResponse) XXX_Unmarshal(b []byte) error
- type TilesHandler
- type TilesService
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterTilesHandler ¶
func RegisterTilesHandler(s server.Server, hdlr TilesHandler, opts ...server.HandlerOption) error
Types ¶
type GetRequest ¶
type GetRequest struct { X int32 `protobuf:"varint,1,opt,name=X,proto3" json:"X,omitempty"` Y int32 `protobuf:"varint,2,opt,name=Y,proto3" json:"Y,omitempty"` Z int32 `protobuf:"varint,3,opt,name=Z,proto3" json:"Z,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*GetRequest) Descriptor ¶
func (*GetRequest) Descriptor() ([]byte, []int)
func (*GetRequest) GetX ¶
func (m *GetRequest) GetX() int32
func (*GetRequest) GetY ¶
func (m *GetRequest) GetY() int32
func (*GetRequest) GetZ ¶
func (m *GetRequest) GetZ() int32
func (*GetRequest) ProtoMessage ¶
func (*GetRequest) ProtoMessage()
func (*GetRequest) Reset ¶
func (m *GetRequest) Reset()
func (*GetRequest) String ¶
func (m *GetRequest) String() string
func (*GetRequest) XXX_DiscardUnknown ¶
func (m *GetRequest) XXX_DiscardUnknown()
func (*GetRequest) XXX_Marshal ¶
func (m *GetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*GetRequest) XXX_Merge ¶
func (m *GetRequest) XXX_Merge(src proto.Message)
func (*GetRequest) XXX_Size ¶
func (m *GetRequest) XXX_Size() int
func (*GetRequest) XXX_Unmarshal ¶
func (m *GetRequest) XXX_Unmarshal(b []byte) error
type GetResponse ¶
type GetResponse struct { File []byte `protobuf:"bytes,2,opt,name=File,proto3" json:"File,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*GetResponse) Descriptor ¶
func (*GetResponse) Descriptor() ([]byte, []int)
func (*GetResponse) GetFile ¶
func (m *GetResponse) GetFile() []byte
func (*GetResponse) ProtoMessage ¶
func (*GetResponse) ProtoMessage()
func (*GetResponse) Reset ¶
func (m *GetResponse) Reset()
func (*GetResponse) String ¶
func (m *GetResponse) String() string
func (*GetResponse) XXX_DiscardUnknown ¶
func (m *GetResponse) XXX_DiscardUnknown()
func (*GetResponse) XXX_Marshal ¶
func (m *GetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*GetResponse) XXX_Merge ¶
func (m *GetResponse) XXX_Merge(src proto.Message)
func (*GetResponse) XXX_Size ¶
func (m *GetResponse) XXX_Size() int
func (*GetResponse) XXX_Unmarshal ¶
func (m *GetResponse) XXX_Unmarshal(b []byte) error
type TilesHandler ¶
type TilesHandler interface {
Get(context.Context, *GetRequest, *GetResponse) error
}
type TilesService ¶
type TilesService interface {
Get(ctx context.Context, in *GetRequest, opts ...client.CallOption) (*GetResponse, error)
}
func NewTilesService ¶
func NewTilesService(name string, c client.Client) TilesService
Click to show internal directories.
Click to hide internal directories.