@twilio/voice-sdk
    Preparing search index...

    Interface NetworkTiming

    Represents network related time measurements.

    interface NetworkTiming {
        dtls?: TimeMeasurement;
        ice?: TimeMeasurement;
        peerConnection?: TimeMeasurement;
        signaling?: TimeMeasurement;
    }
    Index

    Properties

    Measurements for establishing DTLS connection. This is measured from RTCDtlsTransport connecting to connected state. See RTCDtlsTransport state.

    Measurements for establishing ICE connection. This is measured from ICE connection checking to connected state. See RTCPeerConnection.iceConnectionState.

    peerConnection?: TimeMeasurement

    Measurements for establishing a PeerConnection. This is measured from PeerConnection connecting to connected state. See RTCPeerConnection.connectionState.

    signaling?: TimeMeasurement

    Measurements for establishing Signaling connection. This is measured from initiating a connection using device.connect(), up to when RTCPeerConnection.signalingState transitions to stable state.