class EndpointConfig
Defined at line 31 of file ../../third_party/grpc-migrating/src/include/grpc/event_engine/endpoint_config.h
Collection of parameters used to configure client and server endpoints. The
maps string-valued keys to values of type int,
string_view, or void pointer. Each EventEngine implementation should
document its set of supported configuration options.
Public Methods
absl::optional<int> GetInt (absl::string_view key)
If the key points to an integer config, an integer value gets returned.
Otherwise it returns an absl::nullopt_t
absl::optional<absl::string_view> GetString (absl::string_view key)
If the key points to an string config, an string value gets returned.
Otherwise it returns an absl::nullopt_t
void * GetVoidPointer (absl::string_view key)
If the key points to an void* config, a void* pointer value gets returned.
Otherwise it returns nullptr
void ~EndpointConfig ()
Defined at line 33 of file ../../third_party/grpc-migrating/src/include/grpc/event_engine/endpoint_config.h