Go to the documentation of this file.
19 #ifndef GRPCPP_SUPPORT_CHANNEL_ARGUMENTS_IMPL_H
20 #define GRPCPP_SUPPORT_CHANNEL_ARGUMENTS_IMPL_H
32 class ChannelArgumentsTest;
124 out.
args = args_.empty() ? NULL : const_cast<grpc_arg*>(&args_[0]);
133 struct PointerVtableMembers {
134 static void* Copy(
void* in) {
return in; }
135 static void Destroy(
void* ) {}
136 static int Compare(
void* a,
void* b) {
137 if (a < b)
return -1;
146 std::vector<grpc_arg> args_;
147 std::list<grpc::string> strings_;
152 #endif // GRPCPP_SUPPORT_CHANNEL_ARGUMENTS_IMPL_H
struct grpc_socket_mutator grpc_socket_mutator
The Socket Mutator interface allows changes on socket options.
Definition: grpc_types.h:73
This header provides an object that reads bytes directly from a grpc::ByteBuffer, via the ZeroCopyInp...
Definition: alarm.h:24
grpc_channel_args c_channel_args() const
Return (by value) a C grpc_channel_args structure which points to arguments owned by this ChannelArgu...
Definition: channel_arguments_impl.h:121
grpc_compression_algorithm
The various compression algorithms supported by gRPC (not sorted by compression level)
Definition: compression_types.h:57
void SetServiceConfigJSON(const grpc::string &service_config_json)
Set service config in JSON form.
void SetCompressionAlgorithm(grpc_compression_algorithm algorithm)
Set the compression algorithm for the channel.
Definition: grpc_types.h:85
An array of arguments that can be passed around.
Definition: grpc_types.h:132
void SetString(const grpc::string &key, const grpc::string &value)
Set a textual argument value under key.
void SetPointerWithVtable(const grpc::string &key, void *value, const grpc_arg_pointer_vtable *vtable)
void SetGrpclbFallbackTimeout(int fallback_timeout)
Set the grpclb fallback timeout (in ms) for the channel.
ChannelArguments & operator=(ChannelArguments other)
Definition: channel_arguments_impl.h:49
void SetPointer(const grpc::string &key, void *value)
Set a pointer argument value under key. Owership is not transferred.
void SetInt(const grpc::string &key, int value)
Set an integer argument value under key.
void Swap(ChannelArguments &other)
ResourceQuota represents a bound on memory and thread usage by the gRPC library.
Definition: resource_quota_impl.h:34
void SetLoadBalancingPolicyName(const grpc::string &lb_policy_name)
Set LB policy name.
size_t num_args
Definition: grpc_types.h:133
void SetUserAgentPrefix(const grpc::string &user_agent_prefix)
Set the string to prepend to the user agent.
Options for channel creation.
Definition: channel_arguments_impl.h:43
void SetSocketMutator(grpc_socket_mutator *mutator)
For client channel's, the socket mutator operates on "channel" sockets.
friend class grpc::testing::ChannelArgumentsTest
Definition: channel_arguments_impl.h:130
void SetMaxSendMessageSize(int size)
void SetChannelArgs(grpc_channel_args *channel_args) const
Dump arguments in this instance to channel_args.
::grpc_impl::SecureChannelCredentials SecureChannelCredentials
Definition: credentials.h:30
void SetResourceQuota(const grpc::ResourceQuota &resource_quota)
Set the buffer pool to be attached to the constructed channel.
std::string string
Definition: config.h:35
An Alarm posts the user-provided tag to its associated completion queue or invokes the user-provided ...
Definition: alarm_impl.h:33
grpc_arg * args
Definition: grpc_types.h:134
void SetSslTargetNameOverride(const grpc::string &name)
Set target name override for SSL host name checking.
void SetMaxReceiveMessageSize(int size)
Set the max receive and send message sizes.