Versions in this module Expand all Collapse all v1 v1.3.1 Aug 18, 2020 Changes in this version + func NewClientStatsHandler(opts ...Option) stats.Handler + func NewServerStatsHandler(opts ...Option) stats.Handler + func RegisterFixtureServer(s *grpc1.Server, srv FixtureServer) + func StreamClientInterceptor(opts ...Option) grpc.StreamClientInterceptor + func StreamServerInterceptor(opts ...Option) grpc.StreamServerInterceptor + func UnaryClientInterceptor(opts ...Option) grpc.UnaryClientInterceptor + func UnaryServerInterceptor(opts ...Option) grpc.UnaryServerInterceptor + type FixtureClient interface + Ping func(ctx context.Context, in *FixtureRequest, opts ...grpc1.CallOption) (*FixtureReply, error) + StreamPing func(ctx context.Context, opts ...grpc1.CallOption) (Fixture_StreamPingClient, error) + func NewFixtureClient(cc *grpc1.ClientConn) FixtureClient + type FixtureReply struct + Message string + func (*FixtureReply) Descriptor() ([]byte, []int) + func (*FixtureReply) ProtoMessage() + func (m *FixtureReply) GetMessage() string + func (m *FixtureReply) Reset() + func (m *FixtureReply) String() string + type FixtureRequest struct + Name string + func (*FixtureRequest) Descriptor() ([]byte, []int) + func (*FixtureRequest) ProtoMessage() + func (m *FixtureRequest) GetName() string + func (m *FixtureRequest) Reset() + func (m *FixtureRequest) String() string + type FixtureServer interface + Ping func(context.Context, *FixtureRequest) (*FixtureReply, error) + StreamPing func(Fixture_StreamPingServer) error + type Fixture_StreamPingClient interface + Recv func() (*FixtureReply, error) + Send func(*FixtureRequest) error + type Fixture_StreamPingServer interface + Recv func() (*FixtureRequest, error) + Send func(*FixtureReply) error + type InterceptorOption func(*config) + func NonErrorCodes(cs ...codes.Code) InterceptorOption + type Option = InterceptorOption + func NoDebugStack() Option + func WithAnalytics(on bool) Option + func WithAnalyticsRate(rate float64) Option + func WithServiceName(name string) Option + func WithStreamCalls(enabled bool) Option + func WithStreamMessages(enabled bool) Option