lib/instrumentation/run-context/index.js (15 lines of code) (raw):
/*
* Copyright Elasticsearch B.V. and other contributors where applicable.
* Licensed under the BSD 2-Clause License; you may not use this file except in
* compliance with the BSD 2-Clause License.
*/
'use strict';
const {
AsyncHooksRunContextManager,
} = require('./AsyncHooksRunContextManager');
const {
AsyncLocalStorageRunContextManager,
} = require('./AsyncLocalStorageRunContextManager');
const { BasicRunContextManager } = require('./BasicRunContextManager');
const { RunContext } = require('./RunContext');
module.exports = {
AsyncHooksRunContextManager,
AsyncLocalStorageRunContextManager,
BasicRunContextManager,
RunContext,
};