package grpc

Import Path
	google.golang.org/grpc (on go.dev)

Dependency Relation
	imports 59 packages, and imported by one package


Package-Level Type Names (total 109, in which 49 are exported)
/* sort exporteds by: | */
BackoffConfig defines the parameters for the default gRPC backoff strategy. Deprecated: use ConnectParams instead. Will be supported throughout 1.x. MaxDelay is the upper bound of backoff delay. func WithBackoffConfig(b BackoffConfig) DialOption var DefaultBackoffConfig
CallOption configures a Call before it starts or extracts information from a Call after it completes. CompressorCallOption ContentSubtypeCallOption CustomCodecCallOption EmptyCallOption FailFastCallOption ForceCodecCallOption HeaderCallOption MaxRecvMsgSizeCallOption MaxRetryRPCBufferSizeCallOption MaxSendMsgSizeCallOption PeerCallOption PerRPCCredsCallOption TrailerCallOption func CallContentSubtype(contentSubtype string) CallOption func CallCustomCodec(codec Codec) CallOption func FailFast(failFast bool) CallOption func ForceCodec(codec encoding.Codec) CallOption func Header(md *metadata.MD) CallOption func MaxCallRecvMsgSize(bytes int) CallOption func MaxCallSendMsgSize(bytes int) CallOption func MaxRetryRPCBufferSize(bytes int) CallOption func Peer(p *peer.Peer) CallOption func PerRPCCredentials(creds credentials.PerRPCCredentials) CallOption func Trailer(md *metadata.MD) CallOption func UseCompressor(name string) CallOption func WaitForReady(waitForReady bool) CallOption func Invoke(ctx context.Context, method string, args, reply interface{}, cc *ClientConn, opts ...CallOption) error func NewClientStream(ctx context.Context, desc *StreamDesc, cc *ClientConn, method string, opts ...CallOption) (ClientStream, error) func WithDefaultCallOptions(cos ...CallOption) DialOption func (*ClientConn).Invoke(ctx context.Context, method string, args, reply interface{}, opts ...CallOption) error func (*ClientConn).NewStream(ctx context.Context, desc *StreamDesc, method string, opts ...CallOption) (ClientStream, error) func ClientConnInterface.Invoke(ctx context.Context, method string, args interface{}, reply interface{}, opts ...CallOption) error func ClientConnInterface.NewStream(ctx context.Context, desc *StreamDesc, method string, opts ...CallOption) (ClientStream, error)
ClientConn represents a virtual connection to a conceptual endpoint, to perform RPCs. A ClientConn is free to have zero or more actual connections to the endpoint based on configuration, load, etc. It is also free to determine which actual endpoints to use and may change it every RPC, permitting client-side load balancing. A ClientConn encapsulates a range of functionality including name resolution, TCP connection establishment (with retries and backoff) and TLS handshakes. It also handles errors on established connections by re-resolving the name and reconnecting. Close tears down the ClientConn and all underlying connections. Connect causes all subchannels in the ClientConn to attempt to connect if the channel is idle. Does not wait for the connection attempts to begin before returning. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release. GetMethodConfig gets the method config of the input method. If there's an exact match for input method (i.e. /service/method), we return the corresponding MethodConfig. If there isn't an exact match for the input method, we look for the service's default config under the service (i.e /service/) and then for the default for all services (empty string). If there is a default MethodConfig for the service, we return it. Otherwise, we return an empty MethodConfig. GetState returns the connectivity.State of ClientConn. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release. Invoke sends the RPC request on the wire and returns after response is received. This is typically called by generated code. All errors returned by Invoke are compatible with the status package. NewStream creates a new Stream for the client side. This is typically called by generated code. ctx is used for the lifetime of the stream. To ensure resources are not leaked due to the stream returned, one of the following actions must be performed: 1. Call Close on the ClientConn. 2. Cancel the context provided. 3. Call RecvMsg until a non-nil error is returned. A protobuf-generated client-streaming RPC, for instance, might use the helper function CloseAndRecv (note that CloseSend does not Recv, therefore is not guaranteed to release all resources). 4. Receive a non-nil, non-io.EOF error from Header or SendMsg. If none of the above happen, a goroutine and a context will be leaked, and grpc will not call the optionally-configured stats handler with a stats.End message. ResetConnectBackoff wakes up all subchannels in transient failure and causes them to attempt another connection immediately. It also resets the backoff times used for subsequent attempts regardless of the current state. In general, this function should not be used. Typical service or network outages result in a reasonable client reconnection strategy by default. However, if a previously unavailable network becomes available, this may be used to trigger an immediate reconnect. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release. Target returns the target string of the ClientConn. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release. WaitForStateChange waits until the connectivity.State of ClientConn changes from sourceState or ctx expires. A true value is returned in former case and false in latter. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release. *ClientConn : ClientConnInterface *ClientConn : io.Closer func Dial(target string, opts ...DialOption) (*ClientConn, error) func DialContext(ctx context.Context, target string, opts ...DialOption) (conn *ClientConn, err error) func Invoke(ctx context.Context, method string, args, reply interface{}, cc *ClientConn, opts ...CallOption) error func NewClientStream(ctx context.Context, desc *StreamDesc, cc *ClientConn, method string, opts ...CallOption) (ClientStream, error)
ClientConnInterface defines the functions clients need to perform unary and streaming RPCs. It is implemented by *ClientConn, and is only intended to be referenced by generated code. Invoke performs a unary RPC and returns after the response is received into reply. NewStream begins a streaming RPC. *ClientConn
ClientStream defines the client-side behavior of a streaming RPC. All errors returned from ClientStream methods are compatible with the status package. CloseSend closes the send direction of the stream. It closes the stream when non-nil error is met. It is also not safe to call CloseSend concurrently with SendMsg. Context returns the context for this stream. It should not be called until after Header or RecvMsg has returned. Once called, subsequent client-side retries are disabled. Header returns the header metadata received from the server if there is any. It blocks if the metadata is not ready to read. RecvMsg blocks until it receives a message into m or the stream is done. It returns io.EOF when the stream completes successfully. On any other error, the stream is aborted and the error contains the RPC status. It is safe to have a goroutine calling SendMsg and another goroutine calling RecvMsg on the same stream at the same time, but it is not safe to call RecvMsg on the same stream in different goroutines. SendMsg is generally called by generated code. On error, SendMsg aborts the stream. If the error was generated by the client, the status is returned directly; otherwise, io.EOF is returned and the status of the stream may be discovered using RecvMsg. SendMsg blocks until: - There is sufficient flow control to schedule m with the transport, or - The stream is done, or - The stream breaks. SendMsg does not wait until the message is received by the server. An untimely stream closure may result in lost messages. To ensure delivery, users should ensure the RPC completed successfully using RecvMsg. It is safe to have a goroutine calling SendMsg and another goroutine calling RecvMsg on the same stream at the same time, but it is not safe to call SendMsg on the same stream in different goroutines. It is also not safe to call CloseSend concurrently with SendMsg. Trailer returns the trailer metadata from the server, if there is any. It must only be called after stream.CloseAndRecv has returned, or stream.Recv has returned a non-nil error (including io.EOF). google.golang.org/grpc/internal/resolver.ClientStream (interface) ClientStream : Stream ClientStream : google.golang.org/grpc/internal/resolver.ClientStream func NewClientStream(ctx context.Context, desc *StreamDesc, cc *ClientConn, method string, opts ...CallOption) (ClientStream, error) func (*ClientConn).NewStream(ctx context.Context, desc *StreamDesc, method string, opts ...CallOption) (ClientStream, error) func ClientConnInterface.NewStream(ctx context.Context, desc *StreamDesc, method string, opts ...CallOption) (ClientStream, error)
Codec defines the interface gRPC uses to encode and decode messages. Note that implementations of this interface must be thread safe; a Codec's methods can be called from concurrent goroutines. Deprecated: use encoding.Codec instead. Marshal returns the wire format of v. String returns the name of the Codec implementation. This is unused by gRPC. Unmarshal parses the wire format into v. Codec : expvar.Var Codec : fmt.Stringer func CallCustomCodec(codec Codec) CallOption func CustomCodec(codec Codec) ServerOption func WithCodec(c Codec) DialOption
Compressor defines the interface gRPC uses to compress a message. Deprecated: use package encoding. Do compresses p into w. Type returns the compression algorithm the Compressor uses. func NewGZIPCompressor() Compressor func NewGZIPCompressorWithLevel(level int) (Compressor, error) func RPCCompressor(cp Compressor) ServerOption func WithCompressor(cp Compressor) DialOption
CompressorCallOption is a CallOption that indicates the compressor to use. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. CompressorType string CompressorCallOption : CallOption
ConnectParams defines the parameters for connecting and retrying. Users are encouraged to use this instead of the BackoffConfig type defined above. See here for more details: https://github.com/grpc/grpc/blob/master/doc/connection-backoff.md. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. Backoff specifies the configuration options for connection backoff. MinConnectTimeout is the minimum amount of time we are willing to give a connection to complete. func WithConnectParams(p ConnectParams) DialOption
ContentSubtypeCallOption is a CallOption that indicates the content-subtype used for marshaling messages. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. ContentSubtype string ContentSubtypeCallOption : CallOption
CustomCodecCallOption is a CallOption that indicates the codec used for marshaling messages. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. Codec Codec CustomCodecCallOption : CallOption
Decompressor defines the interface gRPC uses to decompress a message. Deprecated: use package encoding. Do reads the data from r and uncompress them. Type returns the compression algorithm the Decompressor uses. func NewGZIPDecompressor() Decompressor func RPCDecompressor(dc Decompressor) ServerOption func WithDecompressor(dc Decompressor) DialOption
DialOption configures how we set up the connection. EmptyDialOption func FailOnNonTempDialError(f bool) DialOption func WithAuthority(a string) DialOption func WithBackoffConfig(b BackoffConfig) DialOption func WithBackoffMaxDelay(md time.Duration) DialOption func WithBlock() DialOption func WithChainStreamInterceptor(interceptors ...StreamClientInterceptor) DialOption func WithChainUnaryInterceptor(interceptors ...UnaryClientInterceptor) DialOption func WithChannelzParentID(id *channelz.Identifier) DialOption func WithCodec(c Codec) DialOption func WithCompressor(cp Compressor) DialOption func WithConnectParams(p ConnectParams) DialOption func WithContextDialer(f func(context.Context, string) (net.Conn, error)) DialOption func WithCredentialsBundle(b credentials.Bundle) DialOption func WithDecompressor(dc Decompressor) DialOption func WithDefaultCallOptions(cos ...CallOption) DialOption func WithDefaultServiceConfig(s string) DialOption func WithDialer(f func(string, time.Duration) (net.Conn, error)) DialOption func WithDisableHealthCheck() DialOption func WithDisableRetry() DialOption func WithDisableServiceConfig() DialOption func WithInitialConnWindowSize(s int32) DialOption func WithInitialWindowSize(s int32) DialOption func WithInsecure() DialOption func WithKeepaliveParams(kp keepalive.ClientParameters) DialOption func WithMaxHeaderListSize(s uint32) DialOption func WithMaxMsgSize(s int) DialOption func WithNoProxy() DialOption func WithPerRPCCredentials(creds credentials.PerRPCCredentials) DialOption func WithReadBufferSize(s int) DialOption func WithResolvers(rs ...resolver.Builder) DialOption func WithReturnConnectionError() DialOption func WithServiceConfig(c <-chan ServiceConfig) DialOption func WithStatsHandler(h stats.Handler) DialOption func WithStreamInterceptor(f StreamClientInterceptor) DialOption func WithTimeout(d time.Duration) DialOption func WithTransportCredentials(creds credentials.TransportCredentials) DialOption func WithUnaryInterceptor(f UnaryClientInterceptor) DialOption func WithUserAgent(s string) DialOption func WithWriteBufferSize(s int) DialOption func Dial(target string, opts ...DialOption) (*ClientConn, error) func DialContext(ctx context.Context, target string, opts ...DialOption) (conn *ClientConn, err error)
EmptyCallOption does not alter the Call configuration. It can be embedded in another structure to carry satellite data for use by interceptors. EmptyCallOption : CallOption
EmptyDialOption does not alter the dial configuration. It can be embedded in another structure to build custom dial options. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. EmptyDialOption : DialOption
EmptyServerOption does not alter the server configuration. It can be embedded in another structure to build custom server options. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. EmptyServerOption : ServerOption
FailFastCallOption is a CallOption for indicating whether an RPC should fail fast or not. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. FailFast bool FailFastCallOption : CallOption
ForceCodecCallOption is a CallOption that indicates the codec used for marshaling messages. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. Codec encoding.Codec ForceCodecCallOption : CallOption
HeaderCallOption is a CallOption for collecting response header metadata. The metadata field will be populated *after* the RPC completes. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. HeaderAddr *metadata.MD HeaderCallOption : CallOption
MaxRecvMsgSizeCallOption is a CallOption that indicates the maximum message size in bytes the client can receive. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. MaxRecvMsgSize int MaxRecvMsgSizeCallOption : CallOption
MaxRetryRPCBufferSizeCallOption is a CallOption indicating the amount of memory to be used for caching this RPC for retry purposes. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. MaxRetryRPCBufferSize int MaxRetryRPCBufferSizeCallOption : CallOption
MaxSendMsgSizeCallOption is a CallOption that indicates the maximum message size in bytes the client can send. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. MaxSendMsgSize int MaxSendMsgSizeCallOption : CallOption
MethodConfig defines the configuration recommended by the service providers for a particular method. Deprecated: Users should not use this struct. Service config should be received through name resolver, as specified here https://github.com/grpc/grpc/blob/master/doc/service_config.md
MethodDesc represents an RPC service's method specification. Handler methodHandler MethodName string
MethodInfo contains the information of an RPC including its method name and type. IsClientStream indicates whether the RPC is a client streaming RPC. IsServerStream indicates whether the RPC is a server streaming RPC. Name is the method name only, without the service name or package name.
PeerCallOption is a CallOption for collecting the identity of the remote peer. The peer field will be populated *after* the RPC completes. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. PeerAddr *peer.Peer PeerCallOption : CallOption
PerRPCCredsCallOption is a CallOption that indicates the per-RPC credentials to use for the call. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. Creds credentials.PerRPCCredentials PerRPCCredsCallOption : CallOption
PreparedMsg is responsible for creating a Marshalled and Compressed object. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. Encode marshalls and compresses the message using the codec and compressor for the stream.
Server is a gRPC server to serve RPC requests. GetServiceInfo returns a map from service names to ServiceInfo. Service names include the package names, in the form of <package>.<service>. GracefulStop stops the gRPC server gracefully. It stops the server from accepting new connections and RPCs and blocks until all the pending RPCs are finished. RegisterService registers a service and its implementation to the gRPC server. It is called from the IDL generated code. This must be called before invoking Serve. If ss is non-nil (for legacy code), its type is checked to ensure it implements sd.HandlerType. Serve accepts incoming connections on the listener lis, creating a new ServerTransport and service goroutine for each. The service goroutines read gRPC requests and then call the registered handlers to reply to them. Serve returns when lis.Accept fails with fatal errors. lis will be closed when this method returns. Serve will return a non-nil error unless Stop or GracefulStop is called. ServeHTTP implements the Go standard library's http.Handler interface by responding to the gRPC request r, by looking up the requested gRPC method in the gRPC server s. The provided HTTP request must have arrived on an HTTP/2 connection. When using the Go standard library's server, practically this means that the Request must also have arrived over TLS. To share one port (such as 443 for https) between gRPC and an existing http.Handler, use a root http.Handler such as: if r.ProtoMajor == 2 && strings.HasPrefix( r.Header.Get("Content-Type"), "application/grpc") { grpcServer.ServeHTTP(w, r) } else { yourMux.ServeHTTP(w, r) } Note that ServeHTTP uses Go's HTTP/2 server implementation which is totally separate from grpc-go's HTTP/2 server. Performance and features may vary between the two paths. ServeHTTP does not support some gRPC features available through grpc-go's HTTP/2 server. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release. Stop stops the gRPC server. It immediately closes all open connections and listeners. It cancels all active RPCs on the server side and the corresponding pending RPCs on the client side will get notified by connection errors. *Server : ServiceRegistrar *Server : net/http.Handler func NewServer(opt ...ServerOption) *Server func go.pact.im/x/grpcprocess.Server(srv *Server, lis net.Listener) process.Runnable
A ServerOption sets options such as credentials, codec and keepalive parameters, etc. EmptyServerOption func ChainStreamInterceptor(interceptors ...StreamServerInterceptor) ServerOption func ChainUnaryInterceptor(interceptors ...UnaryServerInterceptor) ServerOption func ConnectionTimeout(d time.Duration) ServerOption func Creds(c credentials.TransportCredentials) ServerOption func CustomCodec(codec Codec) ServerOption func ForceServerCodec(codec encoding.Codec) ServerOption func HeaderTableSize(s uint32) ServerOption func InitialConnWindowSize(s int32) ServerOption func InitialWindowSize(s int32) ServerOption func InTapHandle(h tap.ServerInHandle) ServerOption func KeepaliveEnforcementPolicy(kep keepalive.EnforcementPolicy) ServerOption func KeepaliveParams(kp keepalive.ServerParameters) ServerOption func MaxConcurrentStreams(n uint32) ServerOption func MaxHeaderListSize(s uint32) ServerOption func MaxMsgSize(m int) ServerOption func MaxRecvMsgSize(m int) ServerOption func MaxSendMsgSize(m int) ServerOption func NumStreamWorkers(numServerWorkers uint32) ServerOption func ReadBufferSize(s int) ServerOption func RPCCompressor(cp Compressor) ServerOption func RPCDecompressor(dc Decompressor) ServerOption func StatsHandler(h stats.Handler) ServerOption func StreamInterceptor(i StreamServerInterceptor) ServerOption func UnaryInterceptor(i UnaryServerInterceptor) ServerOption func UnknownServiceHandler(streamHandler StreamHandler) ServerOption func WriteBufferSize(s int) ServerOption func NewServer(opt ...ServerOption) *Server
ServerStream defines the server-side behavior of a streaming RPC. Errors returned from ServerStream methods are compatible with the status package. However, the status code will often not match the RPC status as seen by the client application, and therefore, should not be relied upon for this purpose. Context returns the context for this stream. RecvMsg blocks until it receives a message into m or the stream is done. It returns io.EOF when the client has performed a CloseSend. On any non-EOF error, the stream is aborted and the error contains the RPC status. It is safe to have a goroutine calling SendMsg and another goroutine calling RecvMsg on the same stream at the same time, but it is not safe to call RecvMsg on the same stream in different goroutines. SendHeader sends the header metadata. The provided md and headers set by SetHeader() will be sent. It fails if called multiple times. SendMsg sends a message. On error, SendMsg aborts the stream and the error is returned directly. SendMsg blocks until: - There is sufficient flow control to schedule m with the transport, or - The stream is done, or - The stream breaks. SendMsg does not wait until the message is received by the client. An untimely stream closure may result in lost messages. It is safe to have a goroutine calling SendMsg and another goroutine calling RecvMsg on the same stream at the same time, but it is not safe to call SendMsg on the same stream in different goroutines. It is not safe to modify the message after calling SendMsg. Tracing libraries and stats handlers may use the message lazily. SetHeader sets the header metadata. It may be called multiple times. When call multiple times, all the provided metadata will be merged. All the metadata will be sent out when one of the following happens: - ServerStream.SendHeader() is called; - The first response is sent out; - An RPC status is sent out (error or success). SetTrailer sets the trailer metadata which will be sent with the RPC status. When called more than once, all the provided metadata will be merged. ServerStream : Stream func MethodFromServerStream(stream ServerStream) (string, bool)
ServerTransportStream is a minimal interface that a transport stream must implement. This can be used to mock an actual transport stream for tests of handler code that use, for example, grpc.SetHeader (which requires some stream to be in context). See also NewContextWithServerTransportStream. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. ( ServerTransportStream) Method() string ( ServerTransportStream) SendHeader(md metadata.MD) error ( ServerTransportStream) SetHeader(md metadata.MD) error ( ServerTransportStream) SetTrailer(md metadata.MD) error *google.golang.org/grpc/internal/transport.Stream func ServerTransportStreamFromContext(ctx context.Context) ServerTransportStream func NewContextWithServerTransportStream(ctx context.Context, stream ServerTransportStream) context.Context
ServiceConfig is provided by the service provider and contains parameters for how clients that connect to the service should behave. Deprecated: Users should not use this struct. Service config should be received through name resolver, as specified here https://github.com/grpc/grpc/blob/master/doc/service_config.md Config serviceconfig.Config LB is the load balancer the service providers recommends. This is deprecated; lbConfigs is preferred. If lbConfig and LB are both present, lbConfig will be used. Methods contains a map for the methods in this service. If there is an exact match for a method (i.e. /service/method) in the map, use the corresponding MethodConfig. If there's no exact match, look for the default config for the service (/service/) and use the corresponding MethodConfig if it exists. Otherwise, the method has no MethodConfig to use. ServiceConfig : google.golang.org/grpc/serviceconfig.Config func WithServiceConfig(c <-chan ServiceConfig) DialOption
ServiceDesc represents an RPC service's specification. The pointer to the service interface. Used to check whether the user provided implementation satisfies the interface requirements. Metadata interface{} Methods []MethodDesc ServiceName string Streams []StreamDesc func (*Server).RegisterService(sd *ServiceDesc, ss interface{}) func ServiceRegistrar.RegisterService(desc *ServiceDesc, impl interface{})
ServiceInfo contains unary RPC method info, streaming RPC method info and metadata for a service. Metadata is the metadata specified in ServiceDesc when registering service. Methods []MethodInfo func (*Server).GetServiceInfo() map[string]ServiceInfo
ServiceRegistrar wraps a single method that supports service registration. It enables users to pass concrete types other than grpc.Server to the service registration methods exported by the IDL generated code. RegisterService registers a service and its implementation to the concrete type implementing this interface. It may not be called once the server has started serving. desc describes the service and its methods and handlers. impl is the service implementation which is passed to the method handlers. *Server
Stream defines the common interface a client or server stream has to satisfy. Deprecated: See ClientStream and ServerStream documentation instead. Deprecated: See ClientStream and ServerStream documentation instead. Deprecated: See ClientStream and ServerStream documentation instead. Deprecated: See ClientStream and ServerStream documentation instead. ClientStream (interface) ServerStream (interface) google.golang.org/grpc/internal/resolver.ClientStream (interface) func (*PreparedMsg).Encode(s Stream, msg interface{}) error
StreamClientInterceptor intercepts the creation of a ClientStream. Stream interceptors can be specified as a DialOption, using WithStreamInterceptor() or WithChainStreamInterceptor(), when creating a ClientConn. When a stream interceptor(s) is set on the ClientConn, gRPC delegates all stream creations to the interceptor, and it is the responsibility of the interceptor to call streamer. desc contains a description of the stream. cc is the ClientConn on which the RPC was invoked. streamer is the handler to create a ClientStream and it is the responsibility of the interceptor to call it. opts contain all applicable call options, including defaults from the ClientConn as well as per-call options. StreamClientInterceptor may return a custom ClientStream to intercept all I/O operations. The returned error must be compatible with the status package. func WithChainStreamInterceptor(interceptors ...StreamClientInterceptor) DialOption func WithStreamInterceptor(f StreamClientInterceptor) DialOption
StreamDesc represents a streaming RPC service's method specification. Used on the server when registering services and on the client when initiating new streams. // indicates the client can perform streaming sends // the handler called for the method ServerStreams and ClientStreams are used for registering handlers on a server as well as defining RPC behavior when passed to NewClientStream and ClientConn.NewStream. At least one must be true. // indicates the server can perform streaming sends StreamName and Handler are only used when registering handlers on a server. // the name of the method excluding the service func NewClientStream(ctx context.Context, desc *StreamDesc, cc *ClientConn, method string, opts ...CallOption) (ClientStream, error) func (*ClientConn).NewStream(ctx context.Context, desc *StreamDesc, method string, opts ...CallOption) (ClientStream, error) func ClientConnInterface.NewStream(ctx context.Context, desc *StreamDesc, method string, opts ...CallOption) (ClientStream, error)
Streamer is called by StreamClientInterceptor to create a ClientStream.
StreamHandler defines the handler called by gRPC server to complete the execution of a streaming RPC. If a StreamHandler returns an error, it should either be produced by the status package, or be one of the context errors. Otherwise, gRPC will use codes.Unknown as the status code and err.Error() as the status message of the RPC. func UnknownServiceHandler(streamHandler StreamHandler) ServerOption
StreamServerInfo consists of various information about a streaming RPC on server side. All per-rpc information may be mutated by the interceptor. FullMethod is the full RPC method string, i.e., /package.service/method. IsClientStream indicates whether the RPC is a client streaming RPC. IsServerStream indicates whether the RPC is a server streaming RPC.
StreamServerInterceptor provides a hook to intercept the execution of a streaming RPC on the server. info contains all the information of this RPC the interceptor can operate on. And handler is the service method implementation. It is the responsibility of the interceptor to invoke handler to complete the RPC. func ChainStreamInterceptor(interceptors ...StreamServerInterceptor) ServerOption func StreamInterceptor(i StreamServerInterceptor) ServerOption
TrailerCallOption is a CallOption for collecting response trailer metadata. The metadata field will be populated *after* the RPC completes. # Experimental Notice: This type is EXPERIMENTAL and may be changed or removed in a later release. TrailerAddr *metadata.MD TrailerCallOption : CallOption
UnaryClientInterceptor intercepts the execution of a unary RPC on the client. Unary interceptors can be specified as a DialOption, using WithUnaryInterceptor() or WithChainUnaryInterceptor(), when creating a ClientConn. When a unary interceptor(s) is set on a ClientConn, gRPC delegates all unary RPC invocations to the interceptor, and it is the responsibility of the interceptor to call invoker to complete the processing of the RPC. method is the RPC name. req and reply are the corresponding request and response messages. cc is the ClientConn on which the RPC was invoked. invoker is the handler to complete the RPC and it is the responsibility of the interceptor to call it. opts contain all applicable call options, including defaults from the ClientConn as well as per-call options. The returned error must be compatible with the status package. func WithChainUnaryInterceptor(interceptors ...UnaryClientInterceptor) DialOption func WithUnaryInterceptor(f UnaryClientInterceptor) DialOption
UnaryHandler defines the handler invoked by UnaryServerInterceptor to complete the normal execution of a unary RPC. If a UnaryHandler returns an error, it should either be produced by the status package, or be one of the context errors. Otherwise, gRPC will use codes.Unknown as the status code and err.Error() as the status message of the RPC.
UnaryInvoker is called by UnaryClientInterceptor to complete RPCs.
UnaryServerInfo consists of various information about a unary RPC on server side. All per-rpc information may be mutated by the interceptor. FullMethod is the full RPC method string, i.e., /package.service/method. Server is the service implementation the user provides. This is read-only.
UnaryServerInterceptor provides a hook to intercept the execution of a unary RPC on the server. info contains all the information of this RPC the interceptor can operate on. And handler is the wrapper of the service method implementation. It is the responsibility of the interceptor to invoke handler to complete the RPC. func ChainUnaryInterceptor(interceptors ...UnaryServerInterceptor) ServerOption func UnaryInterceptor(i UnaryServerInterceptor) ServerOption
Package-Level Functions (total 160, in which 96 are exported)
CallContentSubtype returns a CallOption that will set the content-subtype for a call. For example, if content-subtype is "json", the Content-Type over the wire will be "application/grpc+json". The content-subtype is converted to lowercase before being included in Content-Type. See Content-Type on https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#requests for more details. If ForceCodec is not also used, the content-subtype will be used to look up the Codec to use in the registry controlled by RegisterCodec. See the documentation on RegisterCodec for details on registration. The lookup of content-subtype is case-insensitive. If no such Codec is found, the call will result in an error with code codes.Internal. If ForceCodec is also used, that Codec will be used for all request and response messages, with the content-subtype set to the given contentSubtype here for requests.
CallCustomCodec behaves like ForceCodec, but accepts a grpc.Codec instead of an encoding.Codec. Deprecated: use ForceCodec instead.
ChainStreamInterceptor returns a ServerOption that specifies the chained interceptor for streaming RPCs. The first interceptor will be the outer most, while the last interceptor will be the inner most wrapper around the real call. All stream interceptors added by this method will be chained.
ChainUnaryInterceptor returns a ServerOption that specifies the chained interceptor for unary RPCs. The first interceptor will be the outer most, while the last interceptor will be the inner most wrapper around the real call. All unary interceptors added by this method will be chained.
Code returns the error code for err if it was produced by the rpc system. Otherwise, it returns codes.Unknown. Deprecated: use status.Code instead.
ConnectionTimeout returns a ServerOption that sets the timeout for connection establishment (up to and including HTTP/2 handshaking) for all new connections. If this is not set, the default is 120 seconds. A zero or negative value will result in an immediate timeout. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
Creds returns a ServerOption that sets credentials for server connections.
CustomCodec returns a ServerOption that sets a codec for message marshaling and unmarshaling. This will override any lookups by content-subtype for Codecs registered with RegisterCodec. Deprecated: register codecs using encoding.RegisterCodec. The server will automatically use registered codecs based on the incoming requests' headers. See also https://github.com/grpc/grpc-go/blob/master/Documentation/encoding.md#using-a-codec. Will be supported throughout 1.x.
Dial creates a client connection to the given target.
DialContext creates a client connection to the given target. By default, it's a non-blocking dial (the function won't wait for connections to be established, and connecting happens in the background). To make it a blocking dial, use WithBlock() dial option. In the non-blocking case, the ctx does not act against the connection. It only controls the setup steps. In the blocking case, ctx can be used to cancel or expire the pending connection. Once this function returns, the cancellation and expiration of ctx will be noop. Users should call ClientConn.Close to terminate all the pending operations after this function returns. The target name syntax is defined in https://github.com/grpc/grpc/blob/master/doc/naming.md. e.g. to use dns resolver, a "dns:///" prefix should be applied to the target.
ErrorDesc returns the error description of err if it was produced by the rpc system. Otherwise, it returns err.Error() or empty string when err is nil. Deprecated: use status.Convert and Message method instead.
Errorf returns an error containing an error code and a description; Errorf returns nil if c is OK. Deprecated: use status.Errorf instead.
FailFast is the opposite of WaitForReady. Deprecated: use WaitForReady.
FailOnNonTempDialError returns a DialOption that specifies if gRPC fails on non-temporary dial errors. If f is true, and dialer returns a non-temporary error, gRPC will fail the connection to the network address and won't try to reconnect. The default value of FailOnNonTempDialError is false. FailOnNonTempDialError only affects the initial dial, and does not do anything useful unless you are also using WithBlock(). # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
ForceCodec returns a CallOption that will set codec to be used for all request and response messages for a call. The result of calling Name() will be used as the content-subtype after converting to lowercase, unless CallContentSubtype is also used. See Content-Type on https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#requests for more details. Also see the documentation on RegisterCodec and CallContentSubtype for more details on the interaction between Codec and content-subtype. This function is provided for advanced users; prefer to use only CallContentSubtype to select a registered codec instead. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
ForceServerCodec returns a ServerOption that sets a codec for message marshaling and unmarshaling. This will override any lookups by content-subtype for Codecs registered with RegisterCodec. See Content-Type on https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#requests for more details. Also see the documentation on RegisterCodec and CallContentSubtype for more details on the interaction between encoding.Codec and content-subtype. This function is provided for advanced users; prefer to register codecs using encoding.RegisterCodec. The server will automatically use registered codecs based on the incoming requests' headers. See also https://github.com/grpc/grpc-go/blob/master/Documentation/encoding.md#using-a-codec. Will be supported throughout 1.x. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
Header returns a CallOptions that retrieves the header metadata for a unary RPC.
HeaderTableSize returns a ServerOption that sets the size of dynamic header table for stream. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
InitialConnWindowSize returns a ServerOption that sets window size for a connection. The lower bound for window size is 64K and any value smaller than that will be ignored.
InitialWindowSize returns a ServerOption that sets window size for stream. The lower bound for window size is 64K and any value smaller than that will be ignored.
InTapHandle returns a ServerOption that sets the tap handle for all the server transport to be created. Only one can be installed. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
Invoke sends the RPC request on the wire and returns after response is received. This is typically called by generated code. DEPRECATED: Use ClientConn.Invoke instead.
KeepaliveEnforcementPolicy returns a ServerOption that sets keepalive enforcement policy for the server.
KeepaliveParams returns a ServerOption that sets keepalive and max-age parameters for the server.
MaxCallRecvMsgSize returns a CallOption which sets the maximum message size in bytes the client can receive. If this is not set, gRPC uses the default 4MB.
MaxCallSendMsgSize returns a CallOption which sets the maximum message size in bytes the client can send. If this is not set, gRPC uses the default `math.MaxInt32`.
MaxConcurrentStreams returns a ServerOption that will apply a limit on the number of concurrent streams to each ServerTransport.
MaxHeaderListSize returns a ServerOption that sets the max (uncompressed) size of header list that the server is prepared to accept.
MaxMsgSize returns a ServerOption to set the max message size in bytes the server can receive. If this is not set, gRPC uses the default limit. Deprecated: use MaxRecvMsgSize instead. Will be supported throughout 1.x.
MaxRecvMsgSize returns a ServerOption to set the max message size in bytes the server can receive. If this is not set, gRPC uses the default 4MB.
MaxRetryRPCBufferSize returns a CallOption that limits the amount of memory used for buffering this RPC's requests for retry purposes. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
MaxSendMsgSize returns a ServerOption to set the max message size in bytes the server can send. If this is not set, gRPC uses the default `math.MaxInt32`.
Method returns the method string for the server context. The returned string is in the format of "/service/method".
MethodFromServerStream returns the method string for the input stream. The returned string is in the format of "/service/method".
NewClientStream is a wrapper for ClientConn.NewStream.
NewContextWithServerTransportStream creates a new context from ctx and attaches stream to it. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
NewGZIPCompressor creates a Compressor based on GZIP. Deprecated: use package encoding/gzip.
NewGZIPCompressorWithLevel is like NewGZIPCompressor but specifies the gzip compression level instead of assuming DefaultCompression. The error returned will be nil if the level is valid. Deprecated: use package encoding/gzip.
NewGZIPDecompressor creates a Decompressor based on GZIP. Deprecated: use package encoding/gzip.
NewServer creates a gRPC server which has no service registered and has not started to accept requests yet.
NumStreamWorkers returns a ServerOption that sets the number of worker goroutines that should be used to process incoming streams. Setting this to zero (default) will disable workers and spawn a new goroutine for each stream. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
Peer returns a CallOption that retrieves peer information for a unary RPC. The peer field will be populated *after* the RPC completes.
PerRPCCredentials returns a CallOption that sets credentials.PerRPCCredentials for a call.
ReadBufferSize lets you set the size of read buffer, this determines how much data can be read at most for one read syscall. The default value for this buffer is 32KB. Zero or negative values will disable read buffer for a connection so data framer can access the underlying conn directly.
RPCCompressor returns a ServerOption that sets a compressor for outbound messages. For backward compatibility, all outbound messages will be sent using this compressor, regardless of incoming message compression. By default, server messages will be sent using the same compressor with which request messages were sent. Deprecated: use encoding.RegisterCompressor instead. Will be supported throughout 1.x.
RPCDecompressor returns a ServerOption that sets a decompressor for inbound messages. It has higher priority than decompressors registered via encoding.RegisterCompressor. Deprecated: use encoding.RegisterCompressor instead. Will be supported throughout 1.x.
SendHeader sends header metadata. It may be called at most once, and may not be called after any event that causes headers to be sent (see SetHeader for a complete list). The provided md and headers set by SetHeader() will be sent. The error returned is compatible with the status package. However, the status code will often not match the RPC status as seen by the client application, and therefore, should not be relied upon for this purpose.
ServerTransportStreamFromContext returns the ServerTransportStream saved in ctx. Returns nil if the given context has no stream associated with it (which implies it is not an RPC invocation context). # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
SetHeader sets the header metadata to be sent from the server to the client. The context provided must be the context passed to the server's handler. Streaming RPCs should prefer the SetHeader method of the ServerStream. When called multiple times, all the provided metadata will be merged. All the metadata will be sent out when one of the following happens: - grpc.SendHeader is called, or for streaming handlers, stream.SendHeader. - The first response message is sent. For unary handlers, this occurs when the handler returns; for streaming handlers, this can happen when stream's SendMsg method is called. - An RPC status is sent out (error or success). This occurs when the handler returns. SetHeader will fail if called after any of the events above. The error returned is compatible with the status package. However, the status code will often not match the RPC status as seen by the client application, and therefore, should not be relied upon for this purpose.
SetTrailer sets the trailer metadata that will be sent when an RPC returns. When called more than once, all the provided metadata will be merged. The error returned is compatible with the status package. However, the status code will often not match the RPC status as seen by the client application, and therefore, should not be relied upon for this purpose.
StatsHandler returns a ServerOption that sets the stats handler for the server.
StreamInterceptor returns a ServerOption that sets the StreamServerInterceptor for the server. Only one stream interceptor can be installed.
Trailer returns a CallOptions that retrieves the trailer metadata for a unary RPC.
UnaryInterceptor returns a ServerOption that sets the UnaryServerInterceptor for the server. Only one unary interceptor can be installed. The construction of multiple interceptors (e.g., chaining) can be implemented at the caller.
UnknownServiceHandler returns a ServerOption that allows for adding a custom unknown service handler. The provided method is a bidi-streaming RPC service handler that will be invoked instead of returning the "unimplemented" gRPC error whenever a request is received for an unregistered service or method. The handling function and stream interceptor (if set) have full access to the ServerStream, including its Context.
UseCompressor returns a CallOption which sets the compressor used when sending the request. If WithCompressor is also set, UseCompressor has higher priority. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
WaitForReady configures the action to take when an RPC is attempted on broken connections or unreachable servers. If waitForReady is false and the connection is in the TRANSIENT_FAILURE state, the RPC will fail immediately. Otherwise, the RPC client will block the call until a connection is available (or the call is canceled or times out) and will retry the call if it fails due to a transient error. gRPC will not retry if data was written to the wire unless the server indicates it did not process the data. Please refer to https://github.com/grpc/grpc/blob/master/doc/wait-for-ready.md. By default, RPCs don't "wait for ready".
WithAuthority returns a DialOption that specifies the value to be used as the :authority pseudo-header and as the server name in authentication handshake.
WithBackoffConfig configures the dialer to use the provided backoff parameters after connection failures. Deprecated: use WithConnectParams instead. Will be supported throughout 1.x.
WithBackoffMaxDelay configures the dialer to use the provided maximum delay when backing off after failed connection attempts. Deprecated: use WithConnectParams instead. Will be supported throughout 1.x.
WithBlock returns a DialOption which makes callers of Dial block until the underlying connection is up. Without this, Dial returns immediately and connecting the server happens in background.
WithChainStreamInterceptor returns a DialOption that specifies the chained interceptor for streaming RPCs. The first interceptor will be the outer most, while the last interceptor will be the inner most wrapper around the real call. All interceptors added by this method will be chained, and the interceptor defined by WithStreamInterceptor will always be prepended to the chain.
WithChainUnaryInterceptor returns a DialOption that specifies the chained interceptor for unary RPCs. The first interceptor will be the outer most, while the last interceptor will be the inner most wrapper around the real call. All interceptors added by this method will be chained, and the interceptor defined by WithUnaryInterceptor will always be prepended to the chain.
WithChannelzParentID returns a DialOption that specifies the channelz ID of current ClientConn's parent. This function is used in nested channel creation (e.g. grpclb dial). # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
WithCodec returns a DialOption which sets a codec for message marshaling and unmarshaling. Deprecated: use WithDefaultCallOptions(ForceCodec(_)) instead. Will be supported throughout 1.x.
WithCompressor returns a DialOption which sets a Compressor to use for message compression. It has lower priority than the compressor set by the UseCompressor CallOption. Deprecated: use UseCompressor instead. Will be supported throughout 1.x.
WithConnectParams configures the ClientConn to use the provided ConnectParams for creating and maintaining connections to servers. The backoff configuration specified as part of the ConnectParams overrides all defaults specified in https://github.com/grpc/grpc/blob/master/doc/connection-backoff.md. Consider using the backoff.DefaultConfig as a base, in cases where you want to override only a subset of the backoff configuration.
WithContextDialer returns a DialOption that sets a dialer to create connections. If FailOnNonTempDialError() is set to true, and an error is returned by f, gRPC checks the error's Temporary() method to decide if it should try to reconnect to the network address.
WithCredentialsBundle returns a DialOption to set a credentials bundle for the ClientConn.WithCreds. This should not be used together with WithTransportCredentials. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
WithDecompressor returns a DialOption which sets a Decompressor to use for incoming message decompression. If incoming response messages are encoded using the decompressor's Type(), it will be used. Otherwise, the message encoding will be used to look up the compressor registered via encoding.RegisterCompressor, which will then be used to decompress the message. If no compressor is registered for the encoding, an Unimplemented status error will be returned. Deprecated: use encoding.RegisterCompressor instead. Will be supported throughout 1.x.
WithDefaultCallOptions returns a DialOption which sets the default CallOptions for calls over the connection.
WithDefaultServiceConfig returns a DialOption that configures the default service config, which will be used in cases where: 1. WithDisableServiceConfig is also used, or 2. The name resolver does not provide a service config or provides an invalid service config. The parameter s is the JSON representation of the default service config. For more information about service configs, see: https://github.com/grpc/grpc/blob/master/doc/service_config.md For a simple example of usage, see: examples/features/load_balancing/client/main.go
WithDialer returns a DialOption that specifies a function to use for dialing network addresses. If FailOnNonTempDialError() is set to true, and an error is returned by f, gRPC checks the error's Temporary() method to decide if it should try to reconnect to the network address. Deprecated: use WithContextDialer instead. Will be supported throughout 1.x.
WithDisableHealthCheck disables the LB channel health checking for all SubConns of this ClientConn. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
WithDisableRetry returns a DialOption that disables retries, even if the service config enables them. This does not impact transparent retries, which will happen automatically if no data is written to the wire or if the RPC is unprocessed by the remote server.
WithDisableServiceConfig returns a DialOption that causes gRPC to ignore any service config provided by the resolver and provides a hint to the resolver to not fetch service configs. Note that this dial option only disables service config from resolver. If default service config is provided, gRPC will use the default service config.
WithInitialConnWindowSize returns a DialOption which sets the value for initial window size on a connection. The lower bound for window size is 64K and any value smaller than that will be ignored.
WithInitialWindowSize returns a DialOption which sets the value for initial window size on a stream. The lower bound for window size is 64K and any value smaller than that will be ignored.
WithInsecure returns a DialOption which disables transport security for this ClientConn. Under the hood, it uses insecure.NewCredentials(). Note that using this DialOption with per-RPC credentials (through WithCredentialsBundle or WithPerRPCCredentials) which require transport security is incompatible and will cause grpc.Dial() to fail. Deprecated: use WithTransportCredentials and insecure.NewCredentials() instead. Will be supported throughout 1.x.
WithKeepaliveParams returns a DialOption that specifies keepalive parameters for the client transport.
WithMaxHeaderListSize returns a DialOption that specifies the maximum (uncompressed) size of header list that the client is prepared to accept.
WithMaxMsgSize returns a DialOption which sets the maximum message size the client can receive. Deprecated: use WithDefaultCallOptions(MaxCallRecvMsgSize(s)) instead. Will be supported throughout 1.x.
WithNoProxy returns a DialOption which disables the use of proxies for this ClientConn. This is ignored if WithDialer or WithContextDialer are used. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
WithPerRPCCredentials returns a DialOption which sets credentials and places auth state on each outbound RPC.
WithReadBufferSize lets you set the size of read buffer, this determines how much data can be read at most for each read syscall. The default value for this buffer is 32KB. Zero or negative values will disable read buffer for a connection so data framer can access the underlying conn directly.
WithResolvers allows a list of resolver implementations to be registered locally with the ClientConn without needing to be globally registered via resolver.Register. They will be matched against the scheme used for the current Dial only, and will take precedence over the global registry. # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
WithReturnConnectionError returns a DialOption which makes the client connection return a string containing both the last connection error that occurred and the context.DeadlineExceeded error. Implies WithBlock() # Experimental Notice: This API is EXPERIMENTAL and may be changed or removed in a later release.
WithServiceConfig returns a DialOption which has a channel to read the service configuration. Deprecated: service config should be received through name resolver or via WithDefaultServiceConfig, as specified at https://github.com/grpc/grpc/blob/master/doc/service_config.md. Will be removed in a future 1.x release.
WithStatsHandler returns a DialOption that specifies the stats handler for all the RPCs and underlying network connections in this ClientConn.
WithStreamInterceptor returns a DialOption that specifies the interceptor for streaming RPCs.
WithTimeout returns a DialOption that configures a timeout for dialing a ClientConn initially. This is valid if and only if WithBlock() is present. Deprecated: use DialContext instead of Dial and context.WithTimeout instead. Will be supported throughout 1.x.
WithTransportCredentials returns a DialOption which configures a connection level security credentials (e.g., TLS/SSL). This should not be used together with WithCredentialsBundle.
WithUnaryInterceptor returns a DialOption that specifies the interceptor for unary RPCs.
WithUserAgent returns a DialOption that specifies a user agent string for all the RPCs.
WithWriteBufferSize determines how much data can be batched before doing a write on the wire. The corresponding memory allocation for this buffer will be twice the size to keep syscalls low. The default value for this buffer is 32KB. Zero or negative values will disable the write buffer such that each write will be on underlying connection. Note: A Send call may not directly translate to a write.
WriteBufferSize determines how much data can be batched before doing a write on the wire. The corresponding memory allocation for this buffer will be twice the size to keep syscalls low. The default value for this buffer is 32KB. Zero or negative values will disable the write buffer such that each write will be on underlying connection. Note: A Send call may not directly translate to a write.
Package-Level Variables (total 22, in which 5 are exported)
DefaultBackoffConfig uses values specified for backoff in https://github.com/grpc/grpc/blob/master/doc/connection-backoff.md. Deprecated: use ConnectParams instead. Will be supported throughout 1.x.
EnableTracing controls whether to trace RPCs using the golang.org/x/net/trace package. This should only be set before any RPCs are sent or received by this program.
ErrClientConnClosing indicates that the operation is illegal because the ClientConn is closing. Deprecated: this error should not be relied upon by users; use the status code of Canceled instead.
ErrClientConnTimeout indicates that the ClientConn cannot establish the underlying connections within the specified timeout. Deprecated: This error is never returned by grpc and should not be referenced by users.
ErrServerStopped indicates that the operation is now illegal because of the server being stopped.
Package-Level Constants (total 25, in which 7 are exported)
PickFirstBalancerName is the name of the pick_first balancer.
The SupportPackageIsVersion variables are referenced from generated protocol buffer files to ensure compatibility with the gRPC version used. The latest support package version is 7. Older versions are kept for compatibility. These constants should not be referenced from any other code.
The SupportPackageIsVersion variables are referenced from generated protocol buffer files to ensure compatibility with the gRPC version used. The latest support package version is 7. Older versions are kept for compatibility. These constants should not be referenced from any other code.
The SupportPackageIsVersion variables are referenced from generated protocol buffer files to ensure compatibility with the gRPC version used. The latest support package version is 7. Older versions are kept for compatibility. These constants should not be referenced from any other code.
The SupportPackageIsVersion variables are referenced from generated protocol buffer files to ensure compatibility with the gRPC version used. The latest support package version is 7. Older versions are kept for compatibility. These constants should not be referenced from any other code.
The SupportPackageIsVersion variables are referenced from generated protocol buffer files to ensure compatibility with the gRPC version used. The latest support package version is 7. Older versions are kept for compatibility. These constants should not be referenced from any other code.
Version is the current grpc version.