Backstage
    Preparing search index...

    Provides registration of plugin startup and shutdown lifecycle hooks.

    See the service documentation for more details.

    interface LifecycleService {
        addShutdownHook(
            hook: LifecycleServiceShutdownHook,
            options?: LifecycleServiceShutdownOptions,
        ): void;
        addStartupHook(
            hook: LifecycleServiceStartupHook,
            options?: LifecycleServiceStartupOptions,
        ): void;
    }

    Hierarchy (View Summary)

    Index

    Methods