interface ExecutionContextService {
    executeInContext(
        contextValue: undefined | null | models.common.ExecutionContext,
        callback: () => void,
    ): void;
    executeInContextAsync(
        contextValue: undefined | null | models.common.ExecutionContext,
        callback: () => Promise<void>,
    ): Promise<void>;
    get(): undefined | models.common.ExecutionContext;
    getExecutionId(): undefined | string;
    getOriginal(): undefined | models.common.ExecutionContext;
    middleware(req: Request, res: any, next: () => void): void;
    setDetail(detail: string): void;
}

Hierarchy (View Summary)

Methods