From e4a72d6b60008385812a819906b13daeffae76ad Mon Sep 17 00:00:00 2001 From: Harshitha KP Date: Wed, 19 Feb 2020 05:27:52 -0500 Subject: [PATCH] doc: add entry for `AsyncHook` class fixes: https://github.com/nodejs/node/issues/31661 PR-URL: https://github.com/nodejs/node/pull/31865 Fixes: https://github.com/nodejs/node/issues/31661 Reviewed-By: Stephen Belanger Reviewed-By: Anna Henningsen Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell --- doc/api/async_hooks.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md index f02d3ff7556852..fd5075c6259913 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -170,6 +170,11 @@ provided by AsyncHooks itself. The logging should then be skipped when it was the logging itself that caused AsyncHooks callback to call. By doing this the otherwise infinite recursion is broken. +### Class: `AsyncHook` + +The class `AsyncHook` exposes an interface for tracking lifetime events +of asynchronous operations. + #### `asyncHook.enable()` * Returns: {AsyncHook} A reference to `asyncHook`.