Liking cljdoc? Tell your friends :D

web.video.RTCIceTransport

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
raw docstring

componentcljs

(component this)

Property.

[Read Only]

The read-only web.video.RTCIceTransport property component whether the object is serving to transport RTP or RTCP. The value one of the strings in web.rtc.RTCIceComponent.

iceComponent = RTCIceTransport.component;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/component

Property.

[Read Only]

The read-only `web.video.RTCIceTransport` property component
whether the object is serving to transport RTP or RTCP. The value
one of the strings in `web.rtc.RTCIceComponent`.

`iceComponent = RTCIceTransport.component;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/component`
sourceraw docstring

gathering-statecljs

(gathering-state this)

Property.

[Read Only]

The read-only web.video.RTCIceTransport property gatheringState a web.DOMString from the enumerated type web.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.

[Read Only]

The read-only `web.video.RTCIceTransport` property gatheringState
a `web.DOMString` from the enumerated type `web.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`
sourceraw docstring

get-local-candidatescljs

(get-local-candidates this)

Method.

The web.video.RTCIceTransport method getLocalCandidates() returns array of web.rtc.RTCIceCandidate objects, one for each of the that have been gathered by the local device during the current agent session.

localCandidates = RTCIceTransport.getLocalCandidates();

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getLocalCandidates

Method.

The `web.video.RTCIceTransport` method getLocalCandidates() returns
array of `web.rtc.RTCIceCandidate` objects, one for each of the
that have been gathered by the local device during the current
agent session.

`localCandidates = RTCIceTransport.getLocalCandidates();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getLocalCandidates`
sourceraw docstring

get-local-parameterscljs

(get-local-parameters this)

Method.

The web.video.RTCIceTransport method getLocalParameters() returns web.rtc.RTCIceParameters object which provides information identifying 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 `web.video.RTCIceTransport` method getLocalParameters() returns
`web.rtc.RTCIceParameters` object which provides information
identifying 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`
sourceraw docstring

get-remote-candidatescljs

(get-remote-candidates this)

Method.

The web.video.RTCIceTransport method getRemoteCandidates() an array which contains one web.rtc.RTCIceCandidate for each the candidates that have been received from the remote peer so during the current ICE gathering session.

remoteCandidates = RTCIceTransport.getRemoteCandidates();

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getRemoteCandidates

Method.

The `web.video.RTCIceTransport` method getRemoteCandidates()
an array which contains one `web.rtc.RTCIceCandidate` for each
the candidates that have been received from the remote peer so
during the current ICE gathering session.

`remoteCandidates = RTCIceTransport.getRemoteCandidates();`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/getRemoteCandidates`
sourceraw docstring

get-remote-parameterscljs

(get-remote-parameters this)

Method.

The web.video.RTCIceTransport method getRemoteParameters() an web.rtc.RTCIceParameters object which provides information identifying 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 `web.video.RTCIceTransport` method getRemoteParameters()
an `web.rtc.RTCIceParameters` object which provides information
identifying 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`
sourceraw docstring

get-selected-candidate-paircljs

(get-selected-candidate-pair this)

Method.

The web.video.RTCIceTransport method getSelectedCandidatePair() an web.rtc.RTCIceCandidatePair object containing the current pair 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 `web.video.RTCIceTransport` method getSelectedCandidatePair()
an `web.rtc.RTCIceCandidatePair` object containing the current
pair 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`
sourceraw docstring

ongatheringstatechangecljs

(ongatheringstatechange this)

Property.

The ongatheringstatechange event handler for the web.video.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 `web.video.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`
sourceraw docstring

onselectedcandidatepairchangecljs

(onselectedcandidatepairchange this)

Property.

The web.video.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 `web.video.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`
sourceraw docstring

onstatechangecljs

(onstatechange this)

Property.

The onstatechange event handler for the web.video.RTCIceTransport is a property which specifies a function to serve as the 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 `web.video.RTCIceTransport`
is a property which specifies a function to serve as the `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`
sourceraw docstring

rolecljs

(role this)

Property.

[Read Only]

The read-only web.video.RTCIceTransport property role indicates ICE role the transport is fulfilling: that of the controlling or the agent that is being controlled.

iceRole = RTCIceTransport.role;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/role

Property.

[Read Only]

The read-only `web.video.RTCIceTransport` property role indicates
ICE role the transport is fulfilling: that of the controlling
or the agent that is being controlled.

`iceRole = RTCIceTransport.role;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/RTCIceTransport/role`
sourceraw docstring

set-ongatheringstatechange!cljs

(set-ongatheringstatechange! this val)

Property.

The ongatheringstatechange event handler for the web.video.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 `web.video.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`
sourceraw docstring

set-onselectedcandidatepairchange!cljs

(set-onselectedcandidatepairchange! this val)

Property.

The web.video.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 `web.video.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`
sourceraw docstring

set-onstatechange!cljs

(set-onstatechange! this val)

Property.

The onstatechange event handler for the web.video.RTCIceTransport is a property which specifies a function to serve as the 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 `web.video.RTCIceTransport`
is a property which specifies a function to serve as the `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`
sourceraw docstring

statecljs

(state this)

Property.

[Read Only]

The read-only web.video.RTCIceTransport property state returns current state of the ICE transport, so you can determine the of ICE 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.

[Read Only]

The read-only `web.video.RTCIceTransport` property state returns
current state of the ICE transport, so you can determine the
of ICE 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`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close