userver: ugrpc::client::ClientSettings Struct Reference
Loading...
Searching...
No Matches
ugrpc::client::ClientSettings Struct Referencefinal

#include <userver/ugrpc/client/client_factory.hpp>

Detailed Description

Settings relating to creation of a code-generated client.

Definition at line 59 of file client_factory.hpp.

Public Attributes

std::string client_name
 
std::string endpoint
 
const dynamic_config::Key< ClientQos > * client_qos {nullptr}
 

Member Data Documentation

◆ client_name

std::string ugrpc::client::ClientSettings::client_name

**(Required)** The name of the client, for diagnostics, credentials and middlewares.

Definition at line 62 of file client_factory.hpp.

◆ client_qos

const dynamic_config::Key<ClientQos>* ugrpc::client::ClientSettings::client_qos {nullptr}

**(Optional)** The name of the QOS dynamic config that will be applied automatically to every RPC.

Timeout from QOS config is ignored if:

  • an explicit qos parameter is specified at RPC creation, or
  • deadline is specified in the client_context passed at RPC creation.

Client QOS config definition sample

inline const dynamic_config::Key<ugrpc::client::ClientQos> kUnitTestClientQos{
"UNIT_TEST_CLIENT_QOS",
R"(
{
"__default__": {
"timeout-ms": 100
}
}
)",
},
};

Definition at line 84 of file client_factory.hpp.

◆ endpoint

std::string ugrpc::client::ClientSettings::endpoint

**(Required)** The URI to connect to, e.g. http://my.domain.com:8080. Should not include any HTTP path, just schema, domain name and port. Unix sockets are also supported. For details, see: https://grpc.github.io/grpc/cpp/md_doc_naming.html

Definition at line 69 of file client_factory.hpp.


The documentation for this struct was generated from the following file: