The RTCIceTransport interface provides access to information the ICE transport layer over which the data is being sent and
The RTCIceTransport interface provides access to information the ICE transport layer over which the data is being sent and
(component this)
Property.
The read-only rtc.RTCIceTransport
property component specifies
the object is serving to transport RTP or RTCP. The value is
of the strings in rtc.RTCIceComponent
.
iceComponent = RTCIceTransport.component;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/component
Property. The read-only `rtc.RTCIceTransport` property component specifies the object is serving to transport RTP or RTCP. The value is of the strings in `rtc.RTCIceComponent`. `iceComponent = RTCIceTransport.component;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/component`
(gathering-state this)
Property.
The read-only rtc.RTCIceTransport
property gatheringState returns
dom.DOMString
from the enumerated type rtc.RTCIceGathererState
indicates what gathering state the ICE agent is currently in:
"gathering", or "complete".
gatherState = RTCIceTransport.gatheringState;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/gatheringState
Property. The read-only `rtc.RTCIceTransport` property gatheringState returns `dom.DOMString` from the enumerated type `rtc.RTCIceGathererState` indicates what gathering state the ICE agent is currently in: \"gathering\", or \"complete\". `gatherState = RTCIceTransport.gatheringState;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/gatheringState`
(get-local-candidates this)
Method.
The rtc.RTCIceTransport
method getLocalCandidates() returns
array of rtc.RTCIceCandidate
objects, one for each of the candidates
have been gathered by the local device during the current ICE
session.
localCandidates = RTCIceTransport.getLocalCandidates();
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getLocalCandidates
Method. The `rtc.RTCIceTransport` method getLocalCandidates() returns array of `rtc.RTCIceCandidate` objects, one for each of the candidates have been gathered by the local device during the current ICE session. `localCandidates = RTCIceTransport.getLocalCandidates();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getLocalCandidates`
(get-local-parameters this)
Method.
The rtc.RTCIceTransport
method getLocalParameters() returns
rtc.RTCIceParameters
object which provides information uniquely
the local peer for the duration of the ICE session.
parameters = RTCIceTransport.getLocalParameters();
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getLocalParameters
Method. The `rtc.RTCIceTransport` method getLocalParameters() returns `rtc.RTCIceParameters` object which provides information uniquely the local peer for the duration of the ICE session. `parameters = RTCIceTransport.getLocalParameters();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getLocalParameters`
(get-remote-candidates this)
Method.
The rtc.RTCIceTransport
method getRemoteCandidates() returns
array which contains one rtc.RTCIceCandidate
for each of the
that have been received from the remote peer so far during the
ICE gathering session.
remoteCandidates = RTCIceTransport.getRemoteCandidates();
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getRemoteCandidates
Method. The `rtc.RTCIceTransport` method getRemoteCandidates() returns array which contains one `rtc.RTCIceCandidate` for each of the that have been received from the remote peer so far during the ICE gathering session. `remoteCandidates = RTCIceTransport.getRemoteCandidates();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getRemoteCandidates`
(get-remote-parameters this)
Method.
The rtc.RTCIceTransport
method getRemoteParameters() returns
rtc.RTCIceParameters
object which provides information uniquely
the remote peer for the duration of the ICE session.
parameters = RTCIceTransport.getRemoteParameters();
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getRemoteParameters
Method. The `rtc.RTCIceTransport` method getRemoteParameters() returns `rtc.RTCIceParameters` object which provides information uniquely the remote peer for the duration of the ICE session. `parameters = RTCIceTransport.getRemoteParameters();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getRemoteParameters`
(get-selected-candidate-pair this)
Method.
The rtc.RTCIceTransport
method getSelectedCandidatePair() returns
rtc.RTCIceCandidatePair
object containing the current best-choice
of ICE candidates describing the configuration of the endpoints
the transport.
candidatePair = RTCIceTransport.getSelectedCandidatePair();
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getSelectedCandidatePair
Method. The `rtc.RTCIceTransport` method getSelectedCandidatePair() returns `rtc.RTCIceCandidatePair` object containing the current best-choice of ICE candidates describing the configuration of the endpoints the transport. `candidatePair = RTCIceTransport.getSelectedCandidatePair();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getSelectedCandidatePair`
(ongatheringstatechange this)
Property.
The ongatheringstatechange event handler for the rtc.RTCIceTransport
specifies an event handler that is to be called when the gatheringstatechange
occurs on the transport.
RTCIceTransport.ongatheringstatechange = stateChangeHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/ongatheringstatechange
Property. The ongatheringstatechange event handler for the `rtc.RTCIceTransport` specifies an event handler that is to be called when the gatheringstatechange occurs on the transport. `RTCIceTransport.ongatheringstatechange = stateChangeHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/ongatheringstatechange`
(onselectedcandidatepairchange this)
Property.
The rtc.RTCIceTransport
interface's onselectedcandidatepairchange
handler specifies a function to be called to handle the selectedcandidatepairchange
which is fired when the ICE agent selects a new candidate pair
be used for the connection.
RTCIceTransport.onselectedcandidatepairchange = candidatePairHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/onselectedcandidatepairchange
Property. The `rtc.RTCIceTransport` interface's onselectedcandidatepairchange handler specifies a function to be called to handle the selectedcandidatepairchange which is fired when the ICE agent selects a new candidate pair be used for the connection. `RTCIceTransport.onselectedcandidatepairchange = candidatePairHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/onselectedcandidatepairchange`
(onstatechange this)
Property.
The onstatechange event handler for the rtc.RTCIceTransport
is a property which specifies a function to serve as the web.EventHandler
the statechange event that is fired whenever the transport's
changes.
RTCIceTransport.onstatechange = stateChangeHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/onstatechange
Property. The onstatechange event handler for the `rtc.RTCIceTransport` is a property which specifies a function to serve as the `web.EventHandler` the statechange event that is fired whenever the transport's changes. `RTCIceTransport.onstatechange = stateChangeHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/onstatechange`
(role this)
Property.
The read-only rtc.RTCIceTransport
property role indicates which
role the transport is fulfilling: that of the controlling agent,
the agent that is being controlled.
iceRole = RTCIceTransport.role;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/role
Property. The read-only `rtc.RTCIceTransport` property role indicates which role the transport is fulfilling: that of the controlling agent, the agent that is being controlled. `iceRole = RTCIceTransport.role;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/role`
(set-ongatheringstatechange! this val)
Property.
The ongatheringstatechange event handler for the rtc.RTCIceTransport
specifies an event handler that is to be called when the gatheringstatechange
occurs on the transport.
RTCIceTransport.ongatheringstatechange = stateChangeHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/ongatheringstatechange
Property. The ongatheringstatechange event handler for the `rtc.RTCIceTransport` specifies an event handler that is to be called when the gatheringstatechange occurs on the transport. `RTCIceTransport.ongatheringstatechange = stateChangeHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/ongatheringstatechange`
(set-onselectedcandidatepairchange! this val)
Property.
The rtc.RTCIceTransport
interface's onselectedcandidatepairchange
handler specifies a function to be called to handle the selectedcandidatepairchange
which is fired when the ICE agent selects a new candidate pair
be used for the connection.
RTCIceTransport.onselectedcandidatepairchange = candidatePairHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/onselectedcandidatepairchange
Property. The `rtc.RTCIceTransport` interface's onselectedcandidatepairchange handler specifies a function to be called to handle the selectedcandidatepairchange which is fired when the ICE agent selects a new candidate pair be used for the connection. `RTCIceTransport.onselectedcandidatepairchange = candidatePairHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/onselectedcandidatepairchange`
(set-onstatechange! this val)
Property.
The onstatechange event handler for the rtc.RTCIceTransport
is a property which specifies a function to serve as the web.EventHandler
the statechange event that is fired whenever the transport's
changes.
RTCIceTransport.onstatechange = stateChangeHandler;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/onstatechange
Property. The onstatechange event handler for the `rtc.RTCIceTransport` is a property which specifies a function to serve as the `web.EventHandler` the statechange event that is fired whenever the transport's changes. `RTCIceTransport.onstatechange = stateChangeHandler;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/onstatechange`
(state this)
Property.
The read-only rtc.RTCIceTransport
property state returns the
state of the ICE transport, so you can determine the state of
gathering in which the ICE agent currently is operating.
iceState = iceTransport.state;
See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/state
Property. The read-only `rtc.RTCIceTransport` property state returns the state of the ICE transport, so you can determine the state of gathering in which the ICE agent currently is operating. `iceState = iceTransport.state;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/state`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close