Interface DialWebRTCConf

Options required to dial a robot via WebRTC.

  • reconnectMaxAttempts value should be a positive int; default is 10.
  • reconnectMaxWait value should be a positive int; default is positive infinity.
interface DialWebRTCConf {
    authEntity?: string;
    credential?: Credential;
    dialTimeout?: number;
    disableSessions?: boolean;
    host: string;
    iceServers?: ICEServer[];
    noReconnect?: boolean;
    priority?: number;
    reconnectMaxAttempts?: number;
    reconnectMaxWait?: number;
    signalingAddress: string;
}

Properties

authEntity?: string
credential?: Credential
dialTimeout?: number
disableSessions?: boolean
host: string
iceServers?: ICEServer[]
noReconnect?: boolean
priority?: number
reconnectMaxAttempts?: number
reconnectMaxWait?: number
signalingAddress: string

Generated using TypeDoc