Versions in this module Expand all Collapse all v0 v0.2.0 Jul 12, 2019 v0.1.0 Jan 30, 2019 Changes in this version + func RegisterSayHandler(s server.Server, hdlr SayHandler, opts ...server.HandlerOption) + func RegisterSayServer(s *grpc.Server, srv SayServer) + type Request struct + Name string + func (*Request) Descriptor() ([]byte, []int) + func (*Request) ProtoMessage() + func (m *Request) GetName() string + func (m *Request) Reset() + func (m *Request) String() string + type Response struct + Msg string + func (*Response) Descriptor() ([]byte, []int) + func (*Response) ProtoMessage() + func (m *Response) GetMsg() string + func (m *Response) Reset() + func (m *Response) String() string + type SayClient interface + Hello func(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) + func NewSayClient(cc *grpc.ClientConn) SayClient + type SayHandler interface + Hello func(context.Context, *Request, *Response) error + type SayServer interface + Hello func(context.Context, *Request) (*Response, error) + type SayService interface + Hello func(ctx context.Context, in *Request, opts ...client.CallOption) (*Response, error) + func NewSayService(serviceName string, c client.Client) SayService