This documentation is for version v1.3.2 of NNG, but the latest released version is v1.7.3. see the documentation for v1.7.3 for the most up-to-date information.

nng_aio_finish(3)

NAME

nng_aio_finish - finish asynchronous I/O operation

SYNOPSIS

#include <nng/nng.h>

void nng_aio_finish(nng_aio *aio, int err);

DESCRIPTION

The nng_aio_finish() function marks operation associated with aio as complete, with the status err. This will be the result returned by nng_aio_result().

This function causes the callback associated with the aio to called.

It is mandatory that operation providers call this function exactly once when they are finished with the operation. After calling this function they must not perform any further accesses to the aio.
This function is only for I/O providers (those actually performing the operation such as HTTP handler functions or transport providers); ordinary users of the aio should not have any need for this function.

RETURN VALUES

None.

ERRORS

None.

SEE ALSO