Versions in this module Expand all Collapse all v1 v1.0.0 Nov 6, 2020 Changes in this version + func RegisterEchoServer(s *grpc.Server, srv EchoServer) + type EchoClient interface + Echo func(ctx context.Context, in *EchoRequest, opts ...grpc.CallOption) (*EchoResponse, error) + func NewEchoClient(cc *grpc.ClientConn) EchoClient + type EchoRequest struct + Req string + func (*EchoRequest) Descriptor() ([]byte, []int) + func (*EchoRequest) ProtoMessage() + func (m *EchoRequest) GetReq() string + func (m *EchoRequest) Reset() + func (m *EchoRequest) String() string + type EchoResponse struct + Result string + func (*EchoResponse) Descriptor() ([]byte, []int) + func (*EchoResponse) ProtoMessage() + func (m *EchoResponse) GetResult() string + func (m *EchoResponse) Reset() + func (m *EchoResponse) String() string + type EchoServer interface + Echo func(context.Context, *EchoRequest) (*EchoResponse, error)