A builder class for the creation and startup of grpc::Server instances.
More...
#include <server_builder_impl.h>
A builder class for the creation and startup of grpc::Server instances.
◆ HostString
Experimental, to be deprecated.
◆ SyncServerOption
Options for synchronous servers.
Enumerator |
---|
NUM_CQS | Number of completion queues.
|
MIN_POLLERS | Minimum number of polling threads.
|
MAX_POLLERS | Maximum number of polling threads.
|
CQ_TIMEOUT_MSEC | Completion queue timeout in milliseconds.
|
◆ ServerBuilder()
grpc_impl::ServerBuilder::ServerBuilder |
( |
| ) |
|
◆ ~ServerBuilder()
virtual grpc_impl::ServerBuilder::~ServerBuilder |
( |
| ) |
|
|
virtual |
◆ AddChannelArgument()
Add a channel argument (an escape hatch to tuning core library parameters directly)
◆ AddCompletionQueue()
Add a completion queue for handling asynchronous services.
Best performance is typically obtained by using one thread per polling completion queue.
Caller is required to shutdown the server prior to shutting down the returned completion queue. Caller is also required to drain the completion queue after shutting it down. A typical usage scenario:
// While building the server: ServerBuilder builder; ... cq_ = builder.AddCompletionQueue(); server_ = builder.BuildAndStart();
// While shutting down the server; server_->Shutdown(); cq_->Shutdown(); // Always after the associated server's Shutdown()! // Drain the cq_ that was created void* ignored_tag; bool ignored_ok; while (cq_->Next(&ignored_tag, &ignored_ok)) { }
- Parameters
-
is_frequently_polled | This is an optional parameter to inform gRPC library about whether this completion queue would be frequently polled (i.e. by calling Next() or AsyncNext()). The default value is 'true' and is the recommended setting. Setting this to 'false' (i.e. not polling the completion queue frequently) will have a significantly negative performance impact and hence should not be used in production use cases. |
◆ AddListeningPort()
Enlists an endpoint addr (port with an optional IP address) to bind the grpc::Server object to be created to.
It can be invoked multiple times.
- Parameters
-
addr_uri | The address to try to bind to the server in URI form. If the scheme name is omitted, "dns:///" is assumed. To bind to any address, please use IPv6 any, i.e., [::]:<port>, which also accepts IPv4 connections. Valid values include dns:///localhost:1234, / 192.168.1.1:31416, dns:///[::1]:27182, etc.). |
creds | The credentials associated with the server. |
selected_port[out] | If not nullptr , gets populated with the port number bound to the grpc::Server for the corresponding endpoint after it is successfully bound by BuildAndStart(), 0 otherwise. AddListeningPort does not modify this pointer. |
◆ BuildAndStart()
virtual std::unique_ptr<grpc::Server> grpc_impl::ServerBuilder::BuildAndStart |
( |
| ) |
|
|
virtual |
Return a running server which is ready for processing calls.
Before calling, one typically needs to ensure that:
- a service is registered - so that the server knows what to serve (via RegisterService, or RegisterAsyncGenericService)
- a listening port has been added - so the server knows where to receive traffic (via AddListeningPort)
- [for async api only] completion queues have been added via AddCompletionQueue
Will return a nullptr on errors.
◆ EnableWorkaround()
Enable a server workaround.
Do not use unless you know what the workaround does. For explanation and detailed descriptions of workarounds, see doc/workarounds.md.
◆ experimental()
NOTE: The function experimental() is not stable public API.
It is a view to the experimental components of this class. It may be changed or removed at any time.
◆ InternalAddPluginFactory()
static void grpc_impl::ServerBuilder::InternalAddPluginFactory |
( |
std::unique_ptr< grpc::ServerBuilderPlugin >(*)() |
CreatePlugin | ) |
|
|
static |
For internal use only: Register a ServerBuilderPlugin factory function.
◆ options()
Experimental, to be deprecated.
◆ ports()
std::vector<Port> grpc_impl::ServerBuilder::ports |
( |
| ) |
|
|
inlineprotected |
Experimental, to be deprecated.
◆ RegisterAsyncGenericService()
Register a generic service.
Matches requests with any :authority This is mostly useful for writing generic gRPC Proxies where the exact serialization format is unknown
◆ RegisterService() [1/2]
Register a service.
This call does not take ownership of the service. The service must exist for the lifetime of the Server instance returned by BuildAndStart(). Only matches requests with :authority host
◆ RegisterService() [2/2]
Register a service.
This call does not take ownership of the service. The service must exist for the lifetime of the Server instance returned by BuildAndStart(). Matches requests with any :authority
◆ services()
std::vector<NamedService*> grpc_impl::ServerBuilder::services |
( |
| ) |
|
|
inlineprotected |
Experimental, to be deprecated.
◆ SetCompressionAlgorithmSupportStatus()
Set the support status for compression algorithms.
All algorithms are enabled by default.
Incoming calls compressed with an unsupported algorithm will fail with GRPC_STATUS_UNIMPLEMENTED.
◆ SetDefaultCompressionAlgorithm()
The default compression algorithm to use for all channel calls in the absence of a call-specific level.
Note that it overrides any compression level set by SetDefaultCompressionLevel.
◆ SetDefaultCompressionLevel()
The default compression level to use for all channel calls in the absence of a call-specific level.
◆ SetMaxMessageSize()
ServerBuilder& grpc_impl::ServerBuilder::SetMaxMessageSize |
( |
int |
max_message_size | ) |
|
|
inline |
◆ SetMaxReceiveMessageSize()
ServerBuilder& grpc_impl::ServerBuilder::SetMaxReceiveMessageSize |
( |
int |
max_receive_message_size | ) |
|
|
inline |
Set max receive message size in bytes.
The default is GRPC_DEFAULT_MAX_RECV_MESSAGE_LENGTH.
◆ SetMaxSendMessageSize()
ServerBuilder& grpc_impl::ServerBuilder::SetMaxSendMessageSize |
( |
int |
max_send_message_size | ) |
|
|
inline |
Set max send message size in bytes.
The default is GRPC_DEFAULT_MAX_SEND_MESSAGE_LENGTH.
◆ SetOption()
◆ SetResourceQuota()
Set the attached buffer pool for this server.
◆ SetSyncServerOption()
Only useful if this is a Synchronous server.
◆ ::grpc::testing::ServerBuilderPluginTest
friend class ::grpc::testing::ServerBuilderPluginTest |
|
friend |
◆ algorithm
◆ is_set
bool grpc_impl::ServerBuilder::is_set |
◆ level
The documentation for this class was generated from the following file: