interface ServiceContext {
    executeInContext<T = any>(
        context: AppContext,
        callback: () => T | Promise<T>,
    ): Promise<T>;
    get(): AppContext;
    set(context: AppContext): void;
}

Hierarchy (View Summary)

Methods