@qualithm/arrow-flight-sql-js - v0.4.3
    Preparing search index...

    Type Alias ExchangeStream

    ExchangeStream: {
        cancel: () => void;
        end: () => Promise<void>;
        send: (data: FlightData) => Promise<void>;
    } & AsyncIterable<FlightData>

    Handle for a bidirectional DoExchange stream.

    Allows sending and receiving FlightData messages over a single connection.

    Type Declaration

    • cancel: () => void

      Cancel the stream immediately

    • end: () => Promise<void>

      Signal the end of client-side writes (half-close)

    • send: (data: FlightData) => Promise<void>

      Send a FlightData message to the server