Interface TransportConfigConnect

Part of TransportConfig type, configuration for connecting to TCP and Websocket servers.

interface TransportConfigConnect {
    retryInterval: number;
    tcpServers: string[];
    websocketURLs: string[];
}

Properties

retryInterval: number

The retry interval in milliseconds between failed connection attempts. For cross-compatibility, this must be less than 2^32 - 1.

tcpServers: string[]
websocketURLs: string[]