mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
6510a741c4
This commit introduces store as the first argument in AsyncLocalStorage's run methods. The change is motivated by the following expectation: most users are going to use a custom object as the store and an extra Map created by the previous implementation is an overhead for their use case. Important note. This is a backwards incompatible change. It was discussed and agreed an incompatible change is ok since the API is still experimental and the modified methods were only added within the last week so usage will be minimal to none. PR-URL: https://github.com/nodejs/node/pull/31930 Reviewed-By: Stephen Belanger <admin@stephenbelanger.com> Reviewed-By: Vladimir de Turckheim <vlad2t@hotmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
32 lines
858 B
JavaScript
32 lines
858 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const { AsyncLocalStorage } = require('async_hooks');
|
|
|
|
// case 2 using *AndReturn calls (dual behaviors)
|
|
const asyncLocalStorage = new AsyncLocalStorage();
|
|
|
|
let i = 0;
|
|
process.setUncaughtExceptionCaptureCallback((err) => {
|
|
++i;
|
|
assert.strictEqual(err.message, 'err2');
|
|
assert.strictEqual(asyncLocalStorage.getStore().get('hello'), 'node');
|
|
});
|
|
|
|
try {
|
|
asyncLocalStorage.runSyncAndReturn(new Map(), () => {
|
|
const store = asyncLocalStorage.getStore();
|
|
store.set('hello', 'node');
|
|
setTimeout(() => {
|
|
process.nextTick(() => {
|
|
assert.strictEqual(i, 1);
|
|
});
|
|
throw new Error('err2');
|
|
}, 0);
|
|
throw new Error('err1');
|
|
});
|
|
} catch (e) {
|
|
assert.strictEqual(e.message, 'err1');
|
|
assert.strictEqual(asyncLocalStorage.getStore(), undefined);
|
|
}
|