94 : tls_server_impl_{std::make_unique<TlsServerImpl>(server_name, std::move(tls_socket))} {}
107 tls_server_impl_->SetReadHandler(std::move(read_handler));
TlsServerImpl(const TlsServerImpl &other) noexcept=delete
Deleted copy assignment and copy constructor.
TlsServerImpl & operator=(TlsServerImpl &&other) noexcept=delete
TlsServerImpl(TlsServerImpl &&other) noexcept=delete
Deleted move assignment and move constructor.
~TlsServerImpl() noexcept=default
Destruct an instance of TcpServerImpl.
void Initialize() noexcept
Initialize the TcpServerImpl.
TcpConnectionSecured tcp_connection_
Store the tcp connection.
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
TlsServerImpl & operator=(const TlsServerImpl &other) noexcept=delete
core_type::Result< void > Transmit(MessageConstPtr tcp_message)
Function to transmit the provided tcp message.
void DeInitialize() noexcept
De-initialize the TcpServerImpl.
TlsServerImpl(std::string_view server_name, TlsSocket 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.
boost_support::message::tcp::TcpMessageConstPtr MessageConstPtr
Type alias for Tcp message const pointer.
std::unique_ptr< TlsServerImpl > tls_server_impl_
Unique pointer to tcp server implementation.
~TlsServer() noexcept
Destruct an instance of TcpServer.
void SetReadHandler(HandlerRead read_handler) noexcept
Function to set the read handler that is invoked when message is received.
core_type::Result< void > Transmit(MessageConstPtr tcp_message)
Function to transmit the provided tcp message.
TlsServer & operator=(const TlsServer &other) noexcept=delete
void DeInitialize() noexcept
De-initialize the server.
void Initialize() noexcept
Initialize the server.
TlsServer(std::string_view server_name, TlsSocket tls_socket) noexcept
Constructs an instance of TlsServer.
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)