C++ Actor Framework 1.0.0
|
Wraps configuration parameters for starting clients. More...
#include <client_config.hpp>
Classes | |
class | conn |
Configuration for a client that uses an already established SSL connection. More... | |
class | lazy |
Configuration for a client that creates the socket on demand. More... | |
class | socket |
Configuration for a client that uses a user-provided socket. More... | |
Public Types | |
using | lazy_t = client_config_tag<lazy> |
using | socket_t = client_config_tag<socket> |
using | conn_t = client_config_tag<conn> |
using | fail_t = client_config_tag<error> |
using | value = config_impl<lazy, socket, conn> |
Static Public Attributes | |
static constexpr auto | lazy_v = lazy_t{} |
static constexpr auto | socket_v = socket_t{} |
static constexpr auto | conn_v = conn_t{} |
static constexpr auto | fail_v = fail_t{} |
Wraps configuration parameters for starting clients.