syntropylog
Version:
An instance manager with observability for Node.js applications
10 lines • 460 B
JavaScript
/*
* @file src/context/IContextManager.ts
* @description Defines the public interface for an asynchronous context manager.
* Any class that manages context (such as propagating correlation-id or tracing)
* must implement this interface. This ensures that different context management
* strategies (e.g., `AsyncLocalStorage` for production, a simple mock for tests)
* can be used interchangeably.
*/
export {};
//# sourceMappingURL=IContextManager.js.map