Member Junction
    Preparing search index...

    Everything a server-side check/driver needs about the owned process.

    interface IntegrationBootstrapContext {
        Db: DbConfig;
        Pool?: ConnectionPool;
        Provider: IMetadataProvider;
        Storage: InstrumentedLocalStorageProvider;
        User: UserInfo;
        ClosePool(): Promise<void>;
    }
    Index

    Properties

    Pool?: ConnectionPool

    The mssql connection pool — present on SQL Server, undefined on PostgreSQL. Checks that issue raw sql.Request(pool) queries are SQL-Server-only; use ClosePool() to release the underlying connection on either backend.

    The run-scoped provider (the SQLServerDataProvider / PostgreSQLDataProvider this bootstrap set up).

    The instrumented cache wrapper installed as LocalCacheManager's storage provider.

    User: UserInfo

    Methods