mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 17:01:08 +00:00

currentId is renamed to executionAsyncId triggerId is renamed to triggerAsyncId AsyncResource.triggerId is renamed to AsyncResource.triggerAsyncId AsyncHooksGetCurrentId is renamed to AsyncHooksGetExecutionAsyncId AsyncHooksGetTriggerId is renamed to AsyncHooksGetTriggerAsyncId PR-URL: https://github.com/nodejs/node/pull/13490 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
14 lines
366 B
JavaScript
14 lines
366 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const async_hooks = require('async_hooks');
|
|
|
|
const asyncId = async_hooks.newUid();
|
|
|
|
assert.notStrictEqual(async_hooks.executionAsyncId(), asyncId);
|
|
|
|
async_hooks.runInAsyncIdScope(asyncId, common.mustCall(() => {
|
|
assert.strictEqual(async_hooks.executionAsyncId(), asyncId);
|
|
}));
|