Backstage
    Preparing search index...

    Registration of backend startup and shutdown lifecycle hooks.

    See the service documentation for more details.

    interface RootLifecycleService {
        addBeforeShutdownHook(hook: () => void | Promise<void>): void;
        addShutdownHook(
            hook: LifecycleServiceShutdownHook,
            options?: LifecycleServiceShutdownOptions,
        ): void;
        addStartupHook(
            hook: LifecycleServiceStartupHook,
            options?: LifecycleServiceStartupOptions,
        ): void;
    }

    Hierarchy (View Summary)

    Index

    Methods