summaryrefslogtreecommitdiff
path: root/doc/api/async_hooks.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/async_hooks.md')
-rw-r--r--doc/api/async_hooks.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md
index 5932d6fda3..d071820a29 100644
--- a/doc/api/async_hooks.md
+++ b/doc/api/async_hooks.md
@@ -467,7 +467,7 @@ init for PROMISE with id 6, trigger id: 5 # the Promise returned by then()
#### `async_hooks.executionAsyncResource()`
<!-- YAML
-added: REPLACEME
+added: v12.17.0
-->
* Returns: {Object} The resource representing the current execution.
@@ -869,7 +869,7 @@ for (let i = 0; i < 10; i++) {
## Class: `AsyncLocalStorage`
<!-- YAML
-added: REPLACEME
+added: v12.17.0
-->
This class is used to create asynchronous state within callbacks and promise
@@ -918,7 +918,7 @@ from each other. It is safe to instantiate this class multiple times.
### `new AsyncLocalStorage()`
<!-- YAML
-added: REPLACEME
+added: v12.17.0
-->
Creates a new instance of `AsyncLocalStorage`. Store is only provided within a
@@ -926,7 +926,7 @@ Creates a new instance of `AsyncLocalStorage`. Store is only provided within a
### `asyncLocalStorage.disable()`
<!-- YAML
-added: REPLACEME
+added: v12.17.0
-->
This method disables the instance of `AsyncLocalStorage`. All subsequent calls
@@ -946,7 +946,7 @@ in the current process.
### `asyncLocalStorage.getStore()`
<!-- YAML
-added: REPLACEME
+added: v12.17.0
-->
* Returns: {any}
@@ -957,7 +957,7 @@ calling `asyncLocalStorage.run`, it will return `undefined`.
### `asyncLocalStorage.enterWith(store)`
<!-- YAML
-added: REPLACEME
+added: v12.17.0
-->
* `store` {any}
@@ -999,7 +999,7 @@ asyncLocalStorage.getStore(); // Returns the same object
### `asyncLocalStorage.run(store, callback[, ...args])`
<!-- YAML
-added: REPLACEME
+added: v12.17.0
-->
* `store` {any}
@@ -1034,7 +1034,7 @@ try {
### `asyncLocalStorage.exit(callback[, ...args])`
<!-- YAML
-added: REPLACEME
+added: v12.17.0
-->
* `callback` {Function}