Member Junction
    Preparing search index...

    Interface IStartupSink

    Interface for any singleton class that needs initialization at application startup. Implementing classes must follow the singleton pattern with a static Instance property. Named "Sink" to indicate it receives/handles startup events.

    interface IStartupSink {
        HandleStartup(
            contextUser?: UserInfo,
            provider?: IMetadataProvider,
        ): Promise<void>;
    }

    Implemented by

    Index

    Methods