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

    Type Alias WritableStream<T>

    Writable stream to server (client streaming or bidirectional)

    type WritableStream<T> = {
        end: () => void;
        write: (message: T) => boolean;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    end: () => void

    End the stream (no more writes)

    write: (message: T) => boolean

    Write a message to the stream