The NetworkInformation interface provides information about the
a device is using to communicate with the network and provides
means for scripts to be notified if the connection type changes.
NetworkInformation interfaces cannot be instantiated. It is instead
through the connection property of the web.performance.Navigator
The NetworkInformation interface provides information about the a device is using to communicate with the network and provides means for scripts to be notified if the connection type changes. NetworkInformation interfaces cannot be instantiated. It is instead through the connection property of the `web.performance.Navigator`
(downlink this)
Property.
[Read Only] [Experimental]
The downlink read-only property of the web.other.NetworkInformation
returns the effective bandwidth estimate in megabits per second,
to the nearest multiple of 25 kilobits per seconds. This value
based on recently observed application layer throughput across
active connections, excluding connections made to a private address
In the absence of recent bandwidth measurement data, the attribute
is determined by the properties of the underlying connection
var downLink = NetworkInformation.downlink
See also: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/downlink
Property. [Read Only] [Experimental] The downlink read-only property of the `web.other.NetworkInformation` returns the effective bandwidth estimate in megabits per second, to the nearest multiple of 25 kilobits per seconds. This value based on recently observed application layer throughput across active connections, excluding connections made to a private address In the absence of recent bandwidth measurement data, the attribute is determined by the properties of the underlying connection `var downLink = NetworkInformation.downlink` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/downlink`
(downlink-max this)
Property.
[Read Only] [Experimental]
The NetworkInformation.downlinkMax read-only property returns maximum downlink speed, in megabits per second (Mbps), for the connection technology.
var max = NetworkInformation.downlinkMax
See also: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/downlinkMax
Property. [Read Only] [Experimental] The NetworkInformation.downlinkMax read-only property returns maximum downlink speed, in megabits per second (Mbps), for the connection technology. `var max = NetworkInformation.downlinkMax` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/downlinkMax`
(effective-type this)
Property.
[Read Only] [Experimental]
The effectiveType read-only property of the web.other.NetworkInformation
returns the effective type of the connection meaning one of 'slow-2g',
'3g', or '4g'. This value is determined using a combination of
observed, round-trip time and downlink values.
var effectiveType = NetworkInformation.effectiveType
See also: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/effectiveType
Property. [Read Only] [Experimental] The effectiveType read-only property of the `web.other.NetworkInformation` returns the effective type of the connection meaning one of 'slow-2g', '3g', or '4g'. This value is determined using a combination of observed, round-trip time and downlink values. `var effectiveType = NetworkInformation.effectiveType` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/effectiveType`
(onchange this)
Property.
[Experimental]
The NetworkInformation.onchange event handler contains the code
is fired when connection information changes, and the change
received by the web.other.NetworkInformation
object.
netInfo.onchange = function() { ... }
See also: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/onchange
Property. [Experimental] The NetworkInformation.onchange event handler contains the code is fired when connection information changes, and the change received by the `web.other.NetworkInformation` object. `netInfo.onchange = function() { ... }` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/onchange`
(rtt this)
Property.
[Read Only] [Experimental]
The NetworkInformation.rtt read-only property returns the estimated round-trip time of the current connection, rounded to the nearest of 25 milliseconds. This value is based on recently observed RTT measurements across recently active connections. It excludes made to a private address space. If no recent measurement data available, the value is based on the properties of the underlying technology.
rtt = NetworkInformation.rtt
See also: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/rtt
Property. [Read Only] [Experimental] The NetworkInformation.rtt read-only property returns the estimated round-trip time of the current connection, rounded to the nearest of 25 milliseconds. This value is based on recently observed RTT measurements across recently active connections. It excludes made to a private address space. If no recent measurement data available, the value is based on the properties of the underlying technology. `rtt = NetworkInformation.rtt` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/rtt`
(save-data this)
Property.
[Read Only] [Experimental]
The NetworkInformation.saveData read-only property of the web.other.NetworkInformation
returns true if the user has set a reduced data usage option
the user agent.
var saveData = NetworkInformation.saveData;
See also: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/saveData
Property. [Read Only] [Experimental] The NetworkInformation.saveData read-only property of the `web.other.NetworkInformation` returns true if the user has set a reduced data usage option the user agent. `var saveData = NetworkInformation.saveData;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/saveData`
(set-onchange! this val)
Property.
[Experimental]
The NetworkInformation.onchange event handler contains the code
is fired when connection information changes, and the change
received by the web.other.NetworkInformation
object.
netInfo.onchange = function() { ... }
See also: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/onchange
Property. [Experimental] The NetworkInformation.onchange event handler contains the code is fired when connection information changes, and the change received by the `web.other.NetworkInformation` object. `netInfo.onchange = function() { ... }` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/onchange`
(type this)
Property.
[Read Only] [Experimental]
The NetworkInformation.type read-only property returns the type connection a device is using to communicate with the network.
var type = netInfo.type
See also: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/type
Property. [Read Only] [Experimental] The NetworkInformation.type read-only property returns the type connection a device is using to communicate with the network. `var type = netInfo.type` See also: `https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation/type`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close