Interface RemoteFileSystemClient

interface RemoteFileSystemClient {
    notifyDidChangeCapabilities(capabilities): void;
    notifyDidChangeFile(event): void;
    notifyDidChangeReadOnlyMessage(readOnlyMessage): void;
    notifyFileWatchError(): void;
    onFileStreamData(handle, data): void;
    onFileStreamEnd(handle, error): void;
}

Methods