@nebius/js-sdk - v0.2.54
    Preparing search index...

    Interface KeepaliveConfig

    Defines the validated keepalive settings used for each new gRPC client.

    Use keepaliveConfigFromOptions or keepaliveConfigFromEnv to create this value.

    interface KeepaliveConfig {
        enabled: boolean;
        permitWithoutStream: boolean;
        timeMs: number;
        timeoutMs: number;
    }
    Index
    enabled: boolean

    Specifies whether keepalive is enabled.

    permitWithoutStream: boolean

    Specifies whether to send keepalive pings without an active call.

    timeMs: number

    Contains the keepalive interval in milliseconds.

    timeoutMs: number

    Contains the keepalive timeout in milliseconds.