Versions in this module Expand all Collapse all v1 v1.0.0 May 2, 2018 Changes in this version + func RegisterTestServiceServer(s *grpc.Server, srv TestServiceServer) + type Empty struct + func (*Empty) Descriptor() ([]byte, []int) + func (*Empty) ProtoMessage() + func (m *Empty) Reset() + func (m *Empty) String() string + type PingRequest struct + ErrorCodeReturned uint32 + SleepTimeMs int32 + Value string + func (*PingRequest) Descriptor() ([]byte, []int) + func (*PingRequest) ProtoMessage() + func (m *PingRequest) ExtractRequestFields(appendToMap map[string]interface{}) + func (m *PingRequest) GetErrorCodeReturned() uint32 + func (m *PingRequest) GetSleepTimeMs() int32 + func (m *PingRequest) GetValue() string + func (m *PingRequest) Reset() + func (m *PingRequest) String() string + func (p *PingRequest) Validate() error + type PingResponse struct + Counter int32 + Value string + func (*PingResponse) Descriptor() ([]byte, []int) + func (*PingResponse) ProtoMessage() + func (m *PingResponse) GetCounter() int32 + func (m *PingResponse) GetValue() string + func (m *PingResponse) Reset() + func (m *PingResponse) String() string + type TestServiceClient interface + Ping func(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*PingResponse, error) + PingEmpty func(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*PingResponse, error) + PingError func(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (*Empty, error) + PingList func(ctx context.Context, in *PingRequest, opts ...grpc.CallOption) (TestService_PingListClient, error) + PingStream func(ctx context.Context, opts ...grpc.CallOption) (TestService_PingStreamClient, error) + func NewTestServiceClient(cc *grpc.ClientConn) TestServiceClient + type TestServiceServer interface + Ping func(context.Context, *PingRequest) (*PingResponse, error) + PingEmpty func(context.Context, *Empty) (*PingResponse, error) + PingError func(context.Context, *PingRequest) (*Empty, error) + PingList func(*PingRequest, TestService_PingListServer) error + PingStream func(TestService_PingStreamServer) error + type TestService_PingListClient interface + Recv func() (*PingResponse, error) + type TestService_PingListServer interface + Send func(*PingResponse) error + type TestService_PingStreamClient interface + Recv func() (*PingResponse, error) + Send func(*PingRequest) error + type TestService_PingStreamServer interface + Recv func() (*PingRequest, error) + Send func(*PingResponse) error