aboutsummaryrefslogtreecommitdiff
path: root/docs/ref/api/aio.md
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-12-26 14:10:09 -0800
committerGarrett D'Amore <garrett@damore.org>2024-12-26 15:57:48 -0800
commit1ad7f88e0c58285c9e1cad9448d5a1fcfa7a07f1 (patch)
tree9d11c07a6f65d5f5a0fb2ba80d916ec8f75cc2d0 /docs/ref/api/aio.md
parent07458cca6791b32215e28c4ac501630ca059e463 (diff)
downloadnng-1ad7f88e0c58285c9e1cad9448d5a1fcfa7a07f1.tar.gz
nng-1ad7f88e0c58285c9e1cad9448d5a1fcfa7a07f1.tar.bz2
nng-1ad7f88e0c58285c9e1cad9448d5a1fcfa7a07f1.zip
aio: nng_aio_defer replaced by nng_aio_start
This represents an API change, and we remove the nng_aio_begin function as well, introducing the lightweight nng_aio_reset instead.
Diffstat (limited to 'docs/ref/api/aio.md')
-rw-r--r--docs/ref/api/aio.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/api/aio.md b/docs/ref/api/aio.md
index 966201ba..6e084e43 100644
--- a/docs/ref/api/aio.md
+++ b/docs/ref/api/aio.md
@@ -103,7 +103,7 @@ The {{i:`nng_aio_cancel`}} function acts like `nng_aio_abort`, but uses the erro
The {{i:`nng_aio_stop`}} function aborts the _aio_ operation with [`NNG_ESTOPPED`],
and then waits the operation and any associated callback to complete.
This function also marks _aio_ itself permanently stopped, so that any
-new operations scheduled by I/O providers using [`nng_aio_begin`]
+new operations scheduled by I/O providers using [`nng_aio_start`]
return false. Thus this function should be used to teardown operations.
> [!TIP]