Versions in this module Expand all Collapse all v0 v0.6.0 Oct 3, 2017 v0.5.0 Jun 8, 2017 v0.4.0 Mar 6, 2017 Changes in this version + func RegisterTestServer(s *grpc.Server, srv TestServer) + type TestClient interface + Test func(ctx context.Context, in *TestRequest, opts ...grpc.CallOption) (*TestResponse, error) + func NewTestClient(cc *grpc.ClientConn) TestClient + type TestRequest struct + A string + B int64 + func (*TestRequest) Descriptor() ([]byte, []int) + func (*TestRequest) ProtoMessage() + func (m *TestRequest) GetA() string + func (m *TestRequest) GetB() int64 + func (m *TestRequest) Reset() + func (m *TestRequest) String() string + type TestResponse struct + V string + func (*TestResponse) Descriptor() ([]byte, []int) + func (*TestResponse) ProtoMessage() + func (m *TestResponse) GetV() string + func (m *TestResponse) Reset() + func (m *TestResponse) String() string + type TestServer interface + Test func(context.Context, *TestRequest) (*TestResponse, error)