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

    Interface ReadableStreamEvents<T>

    interface ReadableStreamEvents<T> {
        on(event: "data", callback: (data: T) => void): void;
        on(event: "error", callback: (err: Error) => void): void;
        on(event: "end", callback: () => void): void;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Methods

    Methods

    • The 'data' event is emitted whenever the stream is relinquishing ownership of a chunk of data to a consumer.

      Parameters

      • event: "data"
      • callback: (data: T) => void

      Returns void

    • Emitted when any error occurs.

      Parameters

      • event: "error"
      • callback: (err: Error) => void

      Returns void

    • The 'end' event is emitted when there is no more data to be consumed from the stream. The 'end' event will not be emitted unless the data is completely consumed.

      Parameters

      • event: "end"
      • callback: () => void

      Returns void