interface Options {
    connectTimeout?: number;
    highWaterMark?: number;
    lowWaterMark?: number;
    signal?: AbortSignal;
}

Properties

connectTimeout?: number

Connect timeout (in milliseconds).

highWaterMark?: number

Buffer amount (in bytes) to start TX throttling.

lowWaterMark?: number

Buffer amount (in bytes) to stop TX throttling.

signal?: AbortSignal

AbortSignal that allows canceling connection attempt via AbortController.

Generated using TypeDoc