Datalayer Desktop - v0.0.2
    Preparing search index...

    Lifecycle interface for services. All services should implement this interface for consistent initialization and cleanup.

    interface ILifecycle {
        state: ServiceState;
        dispose(): Promise<void>;
        initialize(): Promise<void>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    Current state of the service.

    Methods