Interface TimeoutOptions

Specifies the timeout options for the client.

interface TimeoutOptions {
    connectTimeout?: number;
    dispatchTimeout?: number;
    managementTimeout?: number;
    queryTimeout?: number;
    resolveTimeout?: number;
    socketConnectTimeout?: number;
}

Properties

connectTimeout?: number

Specifies the default timeout allocated to complete bootstrap connection, specified in millseconds.

dispatchTimeout?: number

Specifies the default timeout allocated to complete HTTP connection prior to sending requests, specified in millseconds.

managementTimeout?: number

Specifies the default timeout for management operations, specified in millseconds.

queryTimeout?: number

Specifies the default timeout for query operations, specified in millseconds.

resolveTimeout?: number

Specifies the default timeout to resolve hostname of the node to IP address, specified in millseconds.

socketConnectTimeout?: number

Specifies the default timeout to complete creating socket connection to resolved IP, specified in millseconds.