@meta-commons/meta-context-local-storage
Version:
Is a Node.js package that allows you to create asynchronous local storage for managing context that is scoped to the duration of an asynchronous operation.
13 lines (12 loc) • 571 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ClsContextNamespace = void 0;
var ClsContextNamespace;
(function (ClsContextNamespace) {
ClsContextNamespace["APP"] = "ApplicationContext";
ClsContextNamespace["EVENT"] = "ClsEventContext";
ClsContextNamespace["AUTH"] = "ClsAuthContext";
ClsContextNamespace["LOGGER"] = "ClsLogContext";
ClsContextNamespace["APM"] = "ClsApmContext";
ClsContextNamespace["DEFAULT"] = "default";
})(ClsContextNamespace || (exports.ClsContextNamespace = ClsContextNamespace = {}));
;