Documentation ¶
Index ¶
- func NewApiEndpoints() []*api.Endpoint
- func RegisterApiHandler(s server.Server, hdlr ApiHandler, opts ...server.HandlerOption) error
- func RegisterApiServer(s *grpc.Server, srv ApiServer)
- type ApiClient
- type ApiHandler
- type ApiServer
- type ApiService
- type EmptyResponse
- func (*EmptyResponse) Descriptor() ([]byte, []int)
- func (*EmptyResponse) ProtoMessage()
- func (m *EmptyResponse) Reset()
- func (m *EmptyResponse) String() string
- func (m *EmptyResponse) XXX_DiscardUnknown()
- func (m *EmptyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *EmptyResponse) XXX_Merge(src proto.Message)
- func (m *EmptyResponse) XXX_Size() int
- func (m *EmptyResponse) XXX_Unmarshal(b []byte) error
- type Endpoint
- func (*Endpoint) Descriptor() ([]byte, []int)
- func (m *Endpoint) GetHost() []string
- func (m *Endpoint) GetMethod() []string
- func (m *Endpoint) GetName() string
- func (m *Endpoint) GetPath() []string
- func (m *Endpoint) GetStream() bool
- func (*Endpoint) ProtoMessage()
- func (m *Endpoint) Reset()
- func (m *Endpoint) String() string
- func (m *Endpoint) XXX_DiscardUnknown()
- func (m *Endpoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Endpoint) XXX_Merge(src proto.Message)
- func (m *Endpoint) XXX_Size() int
- func (m *Endpoint) XXX_Unmarshal(b []byte) error
- type UnimplementedApiServer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewApiEndpoints ¶
func RegisterApiHandler ¶
func RegisterApiHandler(s server.Server, hdlr ApiHandler, opts ...server.HandlerOption) error
func RegisterApiServer ¶
Types ¶
type ApiClient ¶
type ApiClient interface { Register(ctx context.Context, in *Endpoint, opts ...grpc.CallOption) (*EmptyResponse, error) Deregister(ctx context.Context, in *Endpoint, opts ...grpc.CallOption) (*EmptyResponse, error) }
ApiClient is the client API for Api service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewApiClient ¶
func NewApiClient(cc *grpc.ClientConn) ApiClient
type ApiHandler ¶
type ApiHandler interface { Register(context.Context, *Endpoint, *EmptyResponse) error Deregister(context.Context, *Endpoint, *EmptyResponse) error }
type ApiServer ¶
type ApiServer interface { Register(context.Context, *Endpoint) (*EmptyResponse, error) Deregister(context.Context, *Endpoint) (*EmptyResponse, error) }
ApiServer is the server API for Api service.
type ApiService ¶
type ApiService interface { Register(ctx context.Context, in *Endpoint, opts ...client.CallOption) (*EmptyResponse, error) Deregister(ctx context.Context, in *Endpoint, opts ...client.CallOption) (*EmptyResponse, error) }
func NewApiService ¶
func NewApiService(name string, c client.Client) ApiService
type EmptyResponse ¶
type EmptyResponse struct { XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*EmptyResponse) Descriptor ¶
func (*EmptyResponse) Descriptor() ([]byte, []int)
func (*EmptyResponse) ProtoMessage ¶
func (*EmptyResponse) ProtoMessage()
func (*EmptyResponse) Reset ¶
func (m *EmptyResponse) Reset()
func (*EmptyResponse) String ¶
func (m *EmptyResponse) String() string
func (*EmptyResponse) XXX_DiscardUnknown ¶
func (m *EmptyResponse) XXX_DiscardUnknown()
func (*EmptyResponse) XXX_Marshal ¶
func (m *EmptyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*EmptyResponse) XXX_Merge ¶
func (m *EmptyResponse) XXX_Merge(src proto.Message)
func (*EmptyResponse) XXX_Size ¶
func (m *EmptyResponse) XXX_Size() int
func (*EmptyResponse) XXX_Unmarshal ¶
func (m *EmptyResponse) XXX_Unmarshal(b []byte) error
type Endpoint ¶
type Endpoint struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Host []string `protobuf:"bytes,2,rep,name=host,proto3" json:"host,omitempty"` Path []string `protobuf:"bytes,3,rep,name=path,proto3" json:"path,omitempty"` Method []string `protobuf:"bytes,4,rep,name=method,proto3" json:"method,omitempty"` Stream bool `protobuf:"varint,5,opt,name=stream,proto3" json:"stream,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Endpoint) Descriptor ¶
func (*Endpoint) ProtoMessage ¶
func (*Endpoint) ProtoMessage()
func (*Endpoint) XXX_DiscardUnknown ¶
func (m *Endpoint) XXX_DiscardUnknown()
func (*Endpoint) XXX_Marshal ¶
func (*Endpoint) XXX_Unmarshal ¶
type UnimplementedApiServer ¶
type UnimplementedApiServer struct { }
UnimplementedApiServer can be embedded to have forward compatible implementations.
func (*UnimplementedApiServer) Deregister ¶
func (*UnimplementedApiServer) Deregister(ctx context.Context, req *Endpoint) (*EmptyResponse, error)
func (*UnimplementedApiServer) Register ¶
func (*UnimplementedApiServer) Register(ctx context.Context, req *Endpoint) (*EmptyResponse, error)
Click to show internal directories.
Click to hide internal directories.