Theia API Documentation v1.65.0
    Preparing search index...

    Represents the FileSystemProviderActivation event. This event is fired by the FileService if it wants to activate the FileSystemProvider for a specific scheme.

    interface FileSystemProviderActivationEvent {
        scheme: string;
        token: CancellationToken;
        waitUntil(thenable: Promise<any>): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    scheme: string

    The (uri) scheme for which the provider should be activated

    A cancellation token.

    Methods

    • Allows to pause the event loop until the provided thenable resolved.

      Note: It can only be called during event dispatch and not in an asynchronous manner

      Parameters

      • thenable: Promise<any>

        A thenable that delays execution.

      Returns void