Interface DialDirectConf

Options required to dial a robot via gRPC.

interface DialDirectConf {
    credentials?: Credential | AccessToken;
    dialTimeout?: number;
    disableSessions?: boolean;
    host: string;
    noReconnect?: boolean;
    reconnectAbortSignal?: {
        abort: boolean;
    };
    reconnectMaxAttempts?: number;
    reconnectMaxWait?: number;
}

Properties

credentials?: Credential | AccessToken
dialTimeout?: number
disableSessions?: boolean
host: string
noReconnect?: boolean
reconnectAbortSignal?: {
    abort: boolean;
}

Type declaration

  • abort: boolean
reconnectMaxAttempts?: number
reconnectMaxWait?: number

Generated using TypeDoc