|
cpp-msgpack-rpc 0.2.0
An RPC library implementing MessagePack RPC.
|
Namespace of internal implementations. More...
Classes | |
| class | Call |
| Class of data of RPC. More... | |
| class | CallFutureImpl |
| Class of internal implementation of future objects to get results of RPCs asynchronously. More... | |
| class | CallList |
| Class of lists of RPCs. More... | |
| class | CallPromise |
| Class to set results of RPCs. More... | |
| class | ClientBuilderImpl |
| Class of implementation of builders of clients. More... | |
| class | ClientConnector |
| Class to establish connections for clients. More... | |
| class | ClientImpl |
| Class of internal implementation of clients. More... | |
| class | ICallFutureImpl |
| Interface of internal implementation of future objects to get results of RPCs asynchronously. More... | |
| class | IClientBuilderImpl |
| Interface of implementation of builders of clients. More... | |
| class | IClientImpl |
| Interface of internal implementation of clients. More... | |
| class | IParametersSerializer |
| Interface of serializer of parameters. More... | |
| class | MessageSender |
| Class to send messages in clients. More... | |
| class | ParametersSerializer |
| Class of serializer of parameters. More... | |
| class | ReceivedMessageProcessor |
| Class to process received messages. More... | |
| class | ReconnectionTimer |
| Class of timer to sleep before reconnecting. More... | |
| class | RequestIDGenerator |
| Class to generate message IDs of requests. More... | |
| class | SentMessageQueue |
| Class of queues of messages to be sent. More... | |
Functions | |
| std::unique_ptr< IClientBuilderImpl > | create_default_client_builder_impl (config::ClientConfig config, const std::shared_ptr< logging::Logger > &logger) |
| Create an IClientBuilderImpl object with default protocols. | |
| std::unique_ptr< IClientBuilderImpl > | create_empty_client_builder_impl (std::shared_ptr< executors::IAsyncExecutor > executor, std::shared_ptr< logging::Logger > logger, config::ClientConfig config) |
| Create an empty IClientBuilderImpl object. | |
| template<typename... Parameters> | |
| ParametersSerializer< Parameters... > | make_parameters_serializer (const Parameters &... parameters) |
| Create ParametersSerializer object. | |
Namespace of internal implementations.
|
nodiscard |
Create an IClientBuilderImpl object with default protocols.
| [in] | config | Configuration. |
| [in] | logger | Logger. |
Definition at line 37 of file client_builder_impl.cpp.
|
nodiscard |
Create an empty IClientBuilderImpl object.
| [in] | executor | Executor. |
| [in] | logger | Logger. |
| [in] | config | Configuration. |
Definition at line 30 of file client_builder_impl.cpp.
|
nodiscard |
Create ParametersSerializer object.
| Parameters | Types of parameters. |
| [in] | parameters | Parameters. |
Definition at line 176 of file parameters_serializer.h.