QuestDB JavaScript Client - v5.0.0
    Preparing search index...

    Interface QwpClientFactories

    interface QwpClientFactories {
        senderSlotReservation?: QwpPoolSlotReservation;
        close(): void | Promise<void>;
        createQuerySession(
            slot: number,
            signal?: AbortSignal,
        ): Promise<QwpEgressSession>;
        createSender(slot: number, signal?: AbortSignal): Promise<QwpSender>;
        start(): void | Promise<void>;
    }
    Index

    Properties

    senderSlotReservation?: QwpPoolSlotReservation

    Coordinates stable persistent sender slots with recovery.

    Methods