Files
evento/node_modules/@nestjs/common/interfaces/microservices/pre-request-hook.interface.d.ts
2026-03-18 14:55:56 -03:00

23 lines
675 B
TypeScript

import { Observable } from 'rxjs';
import { ExecutionContext } from '../features/execution-context.interface.js';
/**
* Interface describing a global preRequest hook for microservices.
*
* Hooks are executed before guards, allowing setup of context (e.g. AsyncLocalStorage)
* that is available to all downstream enhancers.
*
* @example
* ```typescript
* const als = new AsyncLocalStorage();
* app.registerPreRequestHook((context, next) => {
* als.enterWith({ correlationId: uuid() });
* return next();
* });
* ```
*
* @publicApi
*/
export interface PreRequestHook {
(context: ExecutionContext, next: () => Observable<unknown>): Observable<unknown>;
}