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

    Interface BinaryBufferReadableStream

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

    interface BinaryBufferReadableStream {
        destroy(): void;
        on(event: "data", callback: (data: BinaryBuffer) => 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;
    }

    Hierarchy (View Summary)

    Index

    Methods