Chartbreaker
    Preparing search index...

    Interface RTCIceTransport

    The RTCIceTransport interface provides access to information about the ICE transport layer over which the data is being sent and received.

    MDN Reference

    interface RTCIceTransport {
        gatheringState: RTCIceGathererState;
        ongatheringstatechange: null | ((this: RTCIceTransport, ev: Event) => any);
        onselectedcandidatepairchange:
            | null
            | ((this: RTCIceTransport, ev: Event) => any);
        onstatechange: null | ((this: RTCIceTransport, ev: Event) => any);
        state: RTCIceTransportState;
        addEventListener<K extends keyof RTCIceTransportEventMap>(
            type: K,
            listener: (this: RTCIceTransport, ev: RTCIceTransportEventMap[K]) => any,
            options?: boolean | AddEventListenerOptions,
        ): void;
        addEventListener(
            type: string,
            listener: EventListenerOrEventListenerObject,
            options?: boolean | AddEventListenerOptions,
        ): void;
        dispatchEvent(event: Event): boolean;
        getSelectedCandidatePair(): null | RTCIceCandidatePair;
        removeEventListener<K extends keyof RTCIceTransportEventMap>(
            type: K,
            listener: (this: RTCIceTransport, ev: RTCIceTransportEventMap[K]) => any,
            options?: boolean | EventListenerOptions,
        ): void;
        removeEventListener(
            type: string,
            listener: EventListenerOrEventListenerObject,
            options?: boolean | EventListenerOptions,
        ): void;
    }

    Hierarchy

    • EventTarget
      • RTCIceTransport
    Index

    Properties

    gatheringState: RTCIceGathererState

    The gatheringState read-only property of the RTCIceTransport interface returns a string that indicates the current gathering state of the ICE agent for this transport: 'new', 'gathering', or 'complete'.

    MDN Reference

    ongatheringstatechange: null | ((this: RTCIceTransport, ev: Event) => any)
    onselectedcandidatepairchange:
        | null
        | ((this: RTCIceTransport, ev: Event) => any)
    onstatechange: null | ((this: RTCIceTransport, ev: Event) => any)

    The state read-only property of the RTCIceTransport interface returns the current state of the ICE transport, so you can determine the state of ICE gathering in which the ICE agent currently is operating.

    MDN Reference

    Methods

    • The dispatchEvent() method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order.

      MDN Reference

      Parameters

      • event: Event

      Returns boolean

    • The getSelectedCandidatePair() method of the RTCIceTransport interface returns an RTCIceCandidatePair object containing the current best-choice pair of ICE candidates describing the configuration of the endpoints of the transport.

      MDN Reference

      Returns null | RTCIceCandidatePair