Theia API Documentation v1.65.0
    Preparing search index...
    interface FileSystemWatcherServer {
        dispose(): void;
        getClient?(): undefined | FileSystemWatcherClient;
        setClient(client: undefined | FileSystemWatcherClient): void;
        unwatchFileChanges(watcherId: number): Promise<void>;
        watchFileChanges(uri: string, options?: WatchOptions): Promise<number>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods

    • Dispose this object.

      Returns void

    • If this server is a proxy to a remote server then a client is used as a local object to handle RPC messages from the remote server.

      Parameters

      Returns void