8 #ifndef DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SRC_BOOST_SUPPORT_CONNECTION_UDP_UDP_CONNECTION_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SRC_BOOST_SUPPORT_CONNECTION_UDP_UDP_CONNECTION_H_
17 namespace connection {
25 template<
typename Socket>
101 return socket_.Transmit(std::move(message))
103 .MapError([](
typename Socket::SocketError
const &) {
Client connection class used to handle transmission and reception of udp message from socket.
UdpConnection(Socket socket) noexcept
Constructs an instance of UdpConnection.
core_type::Result< void > Transmit(UdpMessageConstPtr message) noexcept
Function to trigger transmission.
UdpConnection(const UdpConnection &other) noexcept=delete
Deleted copy assignment and copy constructor.
~UdpConnection() noexcept=default
Destruct an instance of UdpConnection.
typename Socket::UdpMessageConstPtr UdpMessageConstPtr
Type alias for Udp message const pointer.
Socket socket_
Store socket used for reading and writing tcp message.
UdpConnection & operator=(const UdpConnection &other) &noexcept=delete
typename Socket::UdpMessage UdpMessage
Type alias for Udp message.
void SetReadHandler(HandlerRead read_handler)
Function to set the read handler that is invoked when message is received.
void DeInitialize() noexcept
De-initialize the client.
UdpConnection(UdpConnection &&other) noexcept=default
Move assignment and move constructor.
typename Socket::UdpMessagePtr UdpMessagePtr
Type alias for Udp message pointer.
void Initialize() noexcept
Initialize the client.
UdpConnection & operator=(UdpConnection &&other) &noexcept=default
std::function< void(UdpMessagePtr)> HandlerRead
Tcp function template used for reception.
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
static Result FromValue(T &t) noexcept
Build a new Result from the specified value (given as lvalue)
auto MakeErrorCode(BoostSupportErrorDomain::Errc code, BoostSupportErrorDomain::SupportDataType data) noexcept -> core_type::ErrorCode
Create a new ErrorCode within DoipErrorDomain.
std::unique_ptr< UdpMessage > UdpMessagePtr
The unique pointer to UdpMessage.
std::unique_ptr< UdpMessage const > UdpMessageConstPtr
The unique pointer to const UdpMessage.