Google Cloud C++ Client 2.10.1
C++ Client Library for Google Cloud Platform
|
The configuration parameters for client connections. More...
#include <google/cloud/connection_options.h>
Public Types | |
using | BackgroundThreadsFactory = ::google::cloud::BackgroundThreadsFactory |
Public Member Functions | |
ConnectionOptions () | |
The default options, using grpc::GoogleDefaultCredentials() . More... | |
ConnectionOptions (std::shared_ptr< grpc::ChannelCredentials > credentials) | |
The default options, using an explicit credentials object. More... | |
ConnectionOptions & | set_credentials (std::shared_ptr< grpc::ChannelCredentials > v) |
Change the gRPC credentials value. More... | |
std::shared_ptr< grpc::ChannelCredentials > | credentials () const |
The gRPC credentials used by clients configured with this object. More... | |
ConnectionOptions & | set_endpoint (std::string v) |
Change the gRPC endpoint. More... | |
std::string const & | endpoint () const |
The endpoint used by clients configured with this object. More... | |
int | num_channels () const |
The number of transport channels to create. More... | |
ConnectionOptions & | set_num_channels (int num_channels) |
Set the value for num_channels() . More... | |
bool | tracing_enabled (std::string const &component) const |
Return whether tracing is enabled for the given component . More... | |
ConnectionOptions & | enable_tracing (std::string const &component) |
Enable tracing for component in clients configured with this object. More... | |
ConnectionOptions & | disable_tracing (std::string const &component) |
Disable tracing for component in clients configured with this object. More... | |
std::set< std::string > const & | components () const |
Return the set of tracing components. More... | |
TracingOptions const & | tracing_options () const |
Return the options for use when tracing RPCs. More... | |
std::string const & | channel_pool_domain () const |
Define the gRPC channel domain for clients configured with this object. More... | |
ConnectionOptions & | set_channel_pool_domain (std::string v) |
Set the value for channel_pool_domain() . More... | |
ConnectionOptions & | add_user_agent_prefix (std::string prefix) |
Prepend prefix to the user-agent string. More... | |
std::string const & | user_agent_prefix () const |
Return the current value for the user agent string. More... | |
grpc::ChannelArguments | CreateChannelArguments () const |
Create a new grpc::ChannelArguments configured with the options in this object. More... | |
ConnectionOptions & | set_background_thread_pool_size (std::size_t s) |
Set the number of background threads. More... | |
std::size_t | background_thread_pool_size () const |
ConnectionOptions & | DisableBackgroundThreads (google::cloud::CompletionQueue const &cq) |
Configure the connection to use cq for all background work. More... | |
BackgroundThreadsFactory | background_threads_factory () const |
The configuration parameters for client connections.
Options
instead. using google::cloud::ConnectionOptions< ConnectionTraits >::BackgroundThreadsFactory = ::google::cloud::BackgroundThreadsFactory |
google::cloud::BackgroundThreadsFactory
.
|
inline |
The default options, using grpc::GoogleDefaultCredentials()
.
Options
instead.
|
inlineexplicit |
The default options, using an explicit credentials object.
Options
instead.
|
inline |
Prepend prefix
to the user-agent string.
Libraries or services that use Cloud C++ clients may want to set their own user-agent prefix. This can help them develop telemetry information about number of users running particular versions of their system or library.
|
inline |
|
inline |
|
inline |
Define the gRPC channel domain for clients configured with this object.
In some cases applications may want to use a separate gRPC connections for different clients. gRPC may share the connection used by separate channels created with the same configuration. The client objects created with this object will create gRPC channels configured with grpc.channel_pooling_domain
set to the value returned by channel_pool_domain()
. gRPC channels with different values for grpc.channel_pooling_domain
are guaranteed to use different connections. Note that there is no guarantee that channels with the same value will have the same connection though.
This option might be useful for applications that want to segregate traffic for whatever reason.
Options
and GrpcChannelsArgumentsOption
|
inline |
Return the set of tracing components.
|
inline |
Create a new grpc::ChannelArguments
configured with the options in this object.
The caller would typically pass this argument to grpc::CreateCustomChannel
and create one more more gRPC channels.
|
inline |
The gRPC credentials used by clients configured with this object.
|
inline |
Disable tracing for component
in clients configured with this object.
|
inline |
Configure the connection to use cq
for all background work.
Connections need to perform background work on behalf of the application. Normally they just create a background thread and a CompletionQueue
for this work, but the application may need more fine-grained control of their threads. In this case the application can provide the CompletionQueue
and it assumes responsibility for creating one or more threads blocked on CompletionQueue::Run()
.
|
inline |
Enable tracing for component
in clients configured with this object.
|
inline |
The endpoint used by clients configured with this object.
Options
and EndpointOption
.
|
inline |
The number of transport channels to create.
Some transports limit the number of simultaneous calls in progress on a channel (for gRPC the limit is 100). Increasing the number of channels thus increases the number of operations that can be in progress in parallel.
The default value is set by ConnectionTraits::default_num_channels()
.
|
inline |
Set the number of background threads.
DisableBackgroundThreads()
is called.
|
inline |
Set the value for channel_pool_domain()
.
Options
and GrpcChannelsArgumentsOption
|
inline |
Change the gRPC credentials value.
|
inline |
Change the gRPC endpoint.
In almost all cases the default is the correct endpoint to use. Applications may need to be changed to (1) test against a fake or simulator, or (2) to use a beta or EAP version of the service.
The default value is set by ConnectionTraits::default_endpoint()
.
Options
and EndpointOption
.
|
inline |
Set the value for num_channels()
.
|
inline |
Return whether tracing is enabled for the given component
.
The C++ clients can log interesting events to help library and application developers troubleshoot problems. This flag returns true if tracing should be enabled by clients configured with this option.
|
inline |
Return the options for use when tracing RPCs.
Options
and GrpcTracingOption
|
inline |
Return the current value for the user agent string.