89 : tcp_server_impl_{std::make_unique<TcpServerImpl>(server_name, std::move(tcp_socket))} {}
102 tcp_server_impl_->SetReadHandler(std::move(read_handler));
TcpServerImpl & operator=(TcpServerImpl &&other) noexcept=delete
TcpConnection tcp_connection_
Store the tcp connection.
TcpServerImpl(const TcpServerImpl &other) noexcept=delete
Deleted copy assignment and copy constructor.
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
TcpServerImpl & operator=(const TcpServerImpl &other) noexcept=delete
~TcpServerImpl() noexcept=default
Destruct an instance of TcpServerImpl.
core_type::Result< void > Transmit(MessageConstPtr tcp_message)
Function to transmit the provided tcp message.
void DeInitialize() noexcept
De-initialize the TcpServerImpl.
TcpServerImpl(TcpServerImpl &&other) noexcept=delete
Deleted move assignment and move constructor.
void Initialize() noexcept
Initialize the TcpServerImpl.
TcpServerImpl(std::string_view server_name, TcpSocket tcp_socket) noexcept
Constructs an instance of TcpServerImpl.
Server that manages unsecured/ secured tcp connection.
std::function< void(MessagePtr)> HandlerRead
Tcp function template used for reception.
core_type::Result< void > Transmit(MessageConstPtr tcp_message)
Function to transmit the provided tcp message.
~TcpServer() noexcept
Destruct an instance of TcpServer.
void Initialize() noexcept
Initialize the server.
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
std::unique_ptr< TcpServerImpl > tcp_server_impl_
Unique pointer to tcp server implementation.
TcpServer(std::string_view server_name, TcpSocket tcp_socket) noexcept
Constructs an instance of TcpServer.
void DeInitialize() noexcept
De-initialize the server.
TcpServer & operator=(const TcpServer &other) noexcept=delete
boost_support::message::tcp::TcpMessageConstPtr MessageConstPtr
Type alias for Tcp message const pointer.
Class used to create a tcp socket for handling transmission and reception of tcp message from driver.
Class type to contains a value (of type ValueType), or an error (of type ErrorType)