Liking cljdoc? Tell your friends :D

rtc.RTCIceCandidateStats

The WebRTC API's RTCIceCandidateStats dictionary provides statistics to an rtc.RTCIceCandidate.

The WebRTC API's RTCIceCandidateStats dictionary provides statistics
to an `rtc.RTCIceCandidate`.
raw docstring

addresscljs

(address this)

Property.

The address property of the rtc.RTCIceCandidateStats dictionary the address of the ICE candidate. While it's preferred that the be specified as an IPv4 or IPv6 numeric address, a fully-qualified name can be used as well.

candidateAddress = rtcIceCandidateStats.address;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/address

Property.

The address property of the `rtc.RTCIceCandidateStats` dictionary
the address of the ICE candidate. While it's preferred that the
be specified as an IPv4 or IPv6 numeric address, a fully-qualified
name can be used as well.

`candidateAddress = rtcIceCandidateStats.address;`

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

candidate-typecljs

(candidate-type this)

Property.

The rtc.RTCIceCandidateStats interface's candidateType property a string which indicates the type of ICE candidate the object

candidateType = rtcIceCandidateStats.candidateType;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/candidateType

Property.

The `rtc.RTCIceCandidateStats` interface's candidateType property
a string which indicates the type of ICE candidate the object

`candidateType = rtcIceCandidateStats.candidateType;`

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

deletedcljs

(deleted this)

Property.

The rtc.RTCIceCandidateStats dictionary's deleted property whether or not the candidate has been deleted or released.

isDeleted = rtcIceCandidateStats.deleted;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/deleted

Property.

The `rtc.RTCIceCandidateStats` dictionary's deleted property
whether or not the candidate has been deleted or released.

`isDeleted = rtcIceCandidateStats.deleted;`

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

moz-local-transportcljs

(moz-local-transport this)

Property.

The non-standard Mozilla extension to the rtc.RTCIceCandidateStats mozLocalTransport, has been supplanted by the standard web.protocol web.relayProtocol properties.

`Instead of using mozLocalTransport, you should use code like this:

localTransport = rtcIceCandidateStats.relayProtocol || rtcIceCandidateStats.protocol;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/mozLocalTransport

Property.

The non-standard Mozilla extension to the `rtc.RTCIceCandidateStats`
mozLocalTransport, has been supplanted by the standard `web.protocol`
`web.relayProtocol` properties.

`Instead of using mozLocalTransport, you should use code like this:



localTransport = rtcIceCandidateStats.relayProtocol || rtcIceCandidateStats.protocol;`

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

network-typecljs

(network-type this)

Property.

The rtc.RTCIceCandidateStats dictionary's networkType property the type of network used by a local candidate to communicate a remote peer.

networkType = rtcIceCandidateStats.networkType;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/networkType

Property.

The `rtc.RTCIceCandidateStats` dictionary's networkType property
the type of network used by a local candidate to communicate
a remote peer.

`networkType = rtcIceCandidateStats.networkType;`

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

portcljs

(port this)

Property.

The rtc.RTCIceCandidateStats dictionary's port property specifies network port used by the candidate.

candidatePort = rtcIceCandidateStats.port;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/port

Property.

The `rtc.RTCIceCandidateStats` dictionary's port property specifies
network port used by the candidate.

`candidatePort = rtcIceCandidateStats.port;`

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

prioritycljs

(priority this)

Property.

The rtc.RTCIceCandidateStats dictionary's priority property a positive integer value indicating the priority (or desirability) the described candidate.

priority = rtcIceCandidateStats.priority;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/priority

Property.

The `rtc.RTCIceCandidateStats` dictionary's priority property
a positive integer value indicating the priority (or desirability)
the described candidate.

`priority = rtcIceCandidateStats.priority;`

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

protocolcljs

(protocol this)

Property.

The rtc.RTCIceCandidateStats dictionary's protocol property the protocol the specified candidate would use for communication the remote peer.

protocol = rtcIceCandidateStats.protocol;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/protocol

Property.

The `rtc.RTCIceCandidateStats` dictionary's protocol property
the protocol the specified candidate would use for communication
the remote peer.

`protocol = rtcIceCandidateStats.protocol;`

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

relay-protocolcljs

(relay-protocol this)

Property.

The rtc.RTCIceCandidateStats dictionary's relayProtocol property the protocol being used by a local ICE candidate to communicate the TURN server.

relayProtocol = rtcIceCandidateStats.relayProtocol;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/relayProtocol

Property.

The `rtc.RTCIceCandidateStats` dictionary's relayProtocol property
the protocol being used by a local ICE candidate to communicate
the TURN server.

`relayProtocol = rtcIceCandidateStats.relayProtocol;`

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

set-address!cljs

(set-address! this val)

Property.

The address property of the rtc.RTCIceCandidateStats dictionary the address of the ICE candidate. While it's preferred that the be specified as an IPv4 or IPv6 numeric address, a fully-qualified name can be used as well.

candidateAddress = rtcIceCandidateStats.address;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/address

Property.

The address property of the `rtc.RTCIceCandidateStats` dictionary
the address of the ICE candidate. While it's preferred that the
be specified as an IPv4 or IPv6 numeric address, a fully-qualified
name can be used as well.

`candidateAddress = rtcIceCandidateStats.address;`

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

set-candidate-type!cljs

(set-candidate-type! this val)

Property.

The rtc.RTCIceCandidateStats interface's candidateType property a string which indicates the type of ICE candidate the object

candidateType = rtcIceCandidateStats.candidateType;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/candidateType

Property.

The `rtc.RTCIceCandidateStats` interface's candidateType property
a string which indicates the type of ICE candidate the object

`candidateType = rtcIceCandidateStats.candidateType;`

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

set-deleted!cljs

(set-deleted! this val)

Property.

The rtc.RTCIceCandidateStats dictionary's deleted property whether or not the candidate has been deleted or released.

isDeleted = rtcIceCandidateStats.deleted;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/deleted

Property.

The `rtc.RTCIceCandidateStats` dictionary's deleted property
whether or not the candidate has been deleted or released.

`isDeleted = rtcIceCandidateStats.deleted;`

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

set-moz-local-transport!cljs

(set-moz-local-transport! this val)

Property.

The non-standard Mozilla extension to the rtc.RTCIceCandidateStats mozLocalTransport, has been supplanted by the standard web.protocol web.relayProtocol properties.

`Instead of using mozLocalTransport, you should use code like this:

localTransport = rtcIceCandidateStats.relayProtocol || rtcIceCandidateStats.protocol;`

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/mozLocalTransport

Property.

The non-standard Mozilla extension to the `rtc.RTCIceCandidateStats`
mozLocalTransport, has been supplanted by the standard `web.protocol`
`web.relayProtocol` properties.

`Instead of using mozLocalTransport, you should use code like this:



localTransport = rtcIceCandidateStats.relayProtocol || rtcIceCandidateStats.protocol;`

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

set-network-type!cljs

(set-network-type! this val)

Property.

The rtc.RTCIceCandidateStats dictionary's networkType property the type of network used by a local candidate to communicate a remote peer.

networkType = rtcIceCandidateStats.networkType;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/networkType

Property.

The `rtc.RTCIceCandidateStats` dictionary's networkType property
the type of network used by a local candidate to communicate
a remote peer.

`networkType = rtcIceCandidateStats.networkType;`

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

set-port!cljs

(set-port! this val)

Property.

The rtc.RTCIceCandidateStats dictionary's port property specifies network port used by the candidate.

candidatePort = rtcIceCandidateStats.port;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/port

Property.

The `rtc.RTCIceCandidateStats` dictionary's port property specifies
network port used by the candidate.

`candidatePort = rtcIceCandidateStats.port;`

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

set-priority!cljs

(set-priority! this val)

Property.

The rtc.RTCIceCandidateStats dictionary's priority property a positive integer value indicating the priority (or desirability) the described candidate.

priority = rtcIceCandidateStats.priority;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/priority

Property.

The `rtc.RTCIceCandidateStats` dictionary's priority property
a positive integer value indicating the priority (or desirability)
the described candidate.

`priority = rtcIceCandidateStats.priority;`

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

set-protocol!cljs

(set-protocol! this val)

Property.

The rtc.RTCIceCandidateStats dictionary's protocol property the protocol the specified candidate would use for communication the remote peer.

protocol = rtcIceCandidateStats.protocol;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/protocol

Property.

The `rtc.RTCIceCandidateStats` dictionary's protocol property
the protocol the specified candidate would use for communication
the remote peer.

`protocol = rtcIceCandidateStats.protocol;`

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

set-relay-protocol!cljs

(set-relay-protocol! this val)

Property.

The rtc.RTCIceCandidateStats dictionary's relayProtocol property the protocol being used by a local ICE candidate to communicate the TURN server.

relayProtocol = rtcIceCandidateStats.relayProtocol;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/relayProtocol

Property.

The `rtc.RTCIceCandidateStats` dictionary's relayProtocol property
the protocol being used by a local ICE candidate to communicate
the TURN server.

`relayProtocol = rtcIceCandidateStats.relayProtocol;`

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

set-transport-id!cljs

(set-transport-id! this val)

Property.

The rtc.RTCIceCandidateStats dictionary's transportId property a string that uniquely identifies the transport that produced rtc.RTCTransportStats from which information about this candidate taken.

transportID = rtcIceCandidateStats.transportId;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/transportId

Property.

The `rtc.RTCIceCandidateStats` dictionary's transportId property
a string that uniquely identifies the transport that produced
`rtc.RTCTransportStats` from which information about this candidate
taken.

`transportID = rtcIceCandidateStats.transportId;`

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

set-url!cljs

(set-url! this val)

Property.

The rtc.RTCIceCandidateStats dictionary's url property specifies URL of the ICE server from which the described candidate was This property is only available for local candidates.

url = rtcIceCandidateStats.url;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/url

Property.

The `rtc.RTCIceCandidateStats` dictionary's url property specifies
URL of the ICE server from which the described candidate was
This property is only available for local candidates.

`url = rtcIceCandidateStats.url;`

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

transport-idcljs

(transport-id this)

Property.

The rtc.RTCIceCandidateStats dictionary's transportId property a string that uniquely identifies the transport that produced rtc.RTCTransportStats from which information about this candidate taken.

transportID = rtcIceCandidateStats.transportId;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/transportId

Property.

The `rtc.RTCIceCandidateStats` dictionary's transportId property
a string that uniquely identifies the transport that produced
`rtc.RTCTransportStats` from which information about this candidate
taken.

`transportID = rtcIceCandidateStats.transportId;`

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

urlcljs

(url this)

Property.

The rtc.RTCIceCandidateStats dictionary's url property specifies URL of the ICE server from which the described candidate was This property is only available for local candidates.

url = rtcIceCandidateStats.url;

See also: https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidateStats/url

Property.

The `rtc.RTCIceCandidateStats` dictionary's url property specifies
URL of the ICE server from which the described candidate was
This property is only available for local candidates.

`url = rtcIceCandidateStats.url;`

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

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

× close