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

    Interface ReadableStream<T>

    A interface that emulates the API shape of a node.js readable stream for use in desktop and web environments.

    interface ReadableStream<T> {
        destroy(): void;
        on(event: "data", callback: (data: T) => void): void;
        on(event: "error", callback: (err: Error) => void): void;
        on(event: "end", callback: () => void): void;
        pause(): void;
        removeListener(event: string, callback: Function): void;
        resume(): void;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Methods

    • Allows to remove a listener that was previously added.

      Parameters

      • event: string
      • callback: Function

      Returns void