package grpc

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

Dependency Relation
	imports 16 packages, and imported by 8 packages

Involved Source Files Package grpc supports network connections to GRPC servers. This package is not intended for use by end developers. Use the google.golang.org/api/option package to configure API clients. pool.go
Package-Level Type Names (total 6, in which 1 are exported)
/* sort exporteds by: | */
ConnPool is a pool of grpc.ClientConns.
Package-Level Functions (total 10, in which 4 are exported)
Dial returns a GRPC connection for use communicating with a Google cloud service, configured with the given ClientOptions.
DialInsecure returns an insecure GRPC connection for use communicating with fake or mock Google cloud service implementations, such as emulators. The connection is configured with the given ClientOptions.
DialPool returns a pool of GRPC connections for the given service. This differs from the connection pooling implementation used by Dial, which uses a custom GRPC load balancer. DialPool should be used instead of Dial when a pool is used by default or a different custom GRPC load balancer is needed. The context and options are shared between each Conn in the pool. The pool size is configured using the WithGRPCConnectionPool option. This API is subject to change as we further refine requirements. It will go away if gRPC stubs accept an interface instead of the concrete ClientConn type. See https://github.com/grpc/grpc-go/issues/1287.
WithConnPool returns a ClientOption that specifies the ConnPool connection to use as the basis of communications. This is only to be used by Google client libraries internally, for example when creating a longrunning API client that shares the same connection pool as a service client.
Package-Level Variables (total 2, neither is exported)