#include <nng/nng.h>
void nng_sleep_aio(nng_duration msec, nng_aio *aio);
--- version: tip layout: manpage_v2 title: nng_sleep_aio(3) ---
nng_sleep_aio - sleep asynchronously
#include <nng/nng.h>
void nng_sleep_aio(nng_duration msec, nng_aio *aio);
The nng_sleep_aio() function provides an asynchronous delay mechanism,
causing the callback for aio to be executed after msec milliseconds.
If the sleep finishes completely, the result will always be zero.
If a timeout is set on aio using
nng_aio_set_timeout(), and it is shorter
than msec,
then the sleep will wake up early, with a result code of NNG_ETIMEDOUT.
|
None.
None.