elastic-apm-node
Version:
The official Elastic APM agent for Node.js
24 lines (20 loc) • 657 B
JavaScript
/*
* 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.
*/
;
const {
AsyncHooksRunContextManager,
} = require('./AsyncHooksRunContextManager');
const {
AsyncLocalStorageRunContextManager,
} = require('./AsyncLocalStorageRunContextManager');
const { BasicRunContextManager } = require('./BasicRunContextManager');
const { RunContext } = require('./RunContext');
module.exports = {
AsyncHooksRunContextManager,
AsyncLocalStorageRunContextManager,
BasicRunContextManager,
RunContext,
};