#include <network_ip_udp.h>
An asynchronous UDP sender.
Public Types | |
using | SendCompletionHandler = NetworkUdpChannelInterface::SendCompletionHandler |
Public Member Functions | |
MAXON_METHOD Result< void > | Send (const AioStatusRef &status, AioBuffer data, const NetworkIpAddrPort &destAddress, SendCompletionHandler handler=NetworkUdpChannelInterface::DefaultSendCompletionHandler) |
MAXON_METHOD Result< void > | Send (AioBuffer data, const NetworkIpAddrPort &destAddress, SendCompletionHandler handler=NetworkUdpChannelInterface::DefaultSendCompletionHandler) |
MAXON_METHOD AioServiceRef | GetIoService () const |
MAXON_METHOD JobQueueRef | GetJobQueue () const |
Private Member Functions | |
MAXON_INTERFACE (NetworkUdpSenderInterface, MAXON_REFERENCE_NORMAL, "net.maxon.interface.networkudpsender") | |
Private Member Functions inherited from AioWriterInterface | |
MAXON_METHOD Result< void > | NotifyForWrite (SocketT sockfd, Result< void > result) |
|
private |
MAXON_METHOD Result<void> Send | ( | const AioStatusRef & | status, |
AioBuffer | data, | ||
const NetworkIpAddrPort & | destAddress, | ||
SendCompletionHandler | handler = NetworkUdpChannelInterface::DefaultSendCompletionHandler |
||
) |
Enqueues an asynchronous send request. As soon as data has been sent, the given handler delegate is called. A status instance can be used to synchronously wait on the operation and check its success.
[in] | status | Status monitor for the operation. |
[in] | data | Buffer containing data to be sent. |
[in] | destAddress | Destination address. |
[in] | handler | Handler delegate. |
MAXON_METHOD Result<void> Send | ( | AioBuffer | data, |
const NetworkIpAddrPort & | destAddress, | ||
SendCompletionHandler | handler = NetworkUdpChannelInterface::DefaultSendCompletionHandler |
||
) |
Equivalent to Send(AioStatusRef(), data, destAddress, handler).
MAXON_METHOD AioServiceRef GetIoService | ( | ) | const |
Returns the I/O service that processes I/O operations of this instance.
MAXON_METHOD JobQueueRef GetJobQueue | ( | ) | const |
Returns the job queue that runs completion handlers of this instance.