mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
77 lines
2.2 KiB
TypeScript
77 lines
2.2 KiB
TypeScript
import { ShutdownSignal } from '../enums/shutdown-signal.enum';
|
|
import { LoggerService, LogLevel } from '../services/logger.service';
|
|
import { Abstract } from './abstract.interface';
|
|
import { DynamicModule } from './modules';
|
|
import { Type } from './type.interface';
|
|
|
|
/**
|
|
* Interface defining NestApplicationContext.
|
|
*
|
|
* @publicApi
|
|
*/
|
|
export interface INestApplicationContext {
|
|
/**
|
|
* Allows navigating through the modules tree, for example, to pull out a specific instance from the selected module.
|
|
* @returns {INestApplicationContext}
|
|
*/
|
|
select<T>(module: Type<T> | DynamicModule): INestApplicationContext;
|
|
|
|
/**
|
|
* Retrieves an instance of either injectable or controller, otherwise, throws exception.
|
|
* @returns {TResult}
|
|
*/
|
|
get<TInput = any, TResult = TInput>(
|
|
typeOrToken: Type<TInput> | Abstract<TInput> | string | symbol,
|
|
options?: { strict: boolean },
|
|
): TResult;
|
|
|
|
/**
|
|
* Resolves transient or request-scoped instance of either injectable or controller, otherwise, throws exception.
|
|
* @returns {Promise<TResult>}
|
|
*/
|
|
resolve<TInput = any, TResult = TInput>(
|
|
typeOrToken: Type<TInput> | Abstract<TInput> | string | symbol,
|
|
contextId?: { id: number },
|
|
options?: { strict: boolean },
|
|
): Promise<TResult>;
|
|
|
|
/**
|
|
* Registers the request/context object for a given context ID (DI container sub-tree).
|
|
* @returns {void}
|
|
*/
|
|
registerRequestByContextId<T = any>(
|
|
request: T,
|
|
contextId: { id: number },
|
|
): void;
|
|
|
|
/**
|
|
* Terminates the application
|
|
* @returns {Promise<void>}
|
|
*/
|
|
close(): Promise<void>;
|
|
|
|
/**
|
|
* Sets custom logger service
|
|
* @returns {void}
|
|
*/
|
|
useLogger(logger: LoggerService | LogLevel[] | false): void;
|
|
|
|
/**
|
|
* Enables the usage of shutdown hooks. Will call the
|
|
* `onApplicationShutdown` function of a provider if the
|
|
* process receives a shutdown signal.
|
|
*
|
|
* @returns {this} The Nest application context instance
|
|
*/
|
|
enableShutdownHooks(signals?: ShutdownSignal[] | string[]): this;
|
|
|
|
/**
|
|
* Initalizes the Nest application.
|
|
* Calls the Nest lifecycle events.
|
|
* It isn't mandatory to call this method directly.
|
|
*
|
|
* @returns {Promise<this>} The NestApplicationContext instance as Promise
|
|
*/
|
|
init(): Promise<this>;
|
|
}
|