Liking cljdoc? Tell your friends :D

web.performance.PerformanceObserverEntryList

The PerformanceObserverEntryList interface is a list of peformance that were explicitly observed via the observe() method.

The PerformanceObserverEntryList interface is a list of peformance
that were explicitly observed via the `observe()` method.
raw docstring

get-entriescljs

(get-entries this & args)

Method.

The getEntries() method of the web.performance.PerformanceObserverEntryList returns a list of explicitly observed performance entry objects a given filter. The list's members are determined by the set entry types specified in the call to the observe() method. list is available in the observer's callback function (as the parameter in the callback).

`General syntax:

entries = list.getEntries(); entries = list.getEntries(PerformanceEntryFilterOptions);

Specific usage:

entries = list.getEntries({name: "entry_name", entryType: "mark"});`

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceObserverEntryList/getEntries

Method.

The getEntries() method of the `web.performance.PerformanceObserverEntryList`
returns a list of explicitly observed performance entry objects
a given filter. The list's members are determined by the set
entry types specified in the call to the `observe()` method.
list is available in the observer's callback function (as the
parameter in the callback).

`General syntax:



entries = list.getEntries();
entries = list.getEntries(PerformanceEntryFilterOptions);

Specific usage:



entries = list.getEntries({name: \"entry_name\", entryType: \"mark\"});`

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

get-entries-by-namecljs

(get-entries-by-name this name type)

Method.

The getEntriesByName() method of the web.performance.PerformanceObserverEntryList returns a list of explicitly observed performance entry objects a given name and entry type. The list's members are determined the set of entry types specified in the call to the observe() The list is available in the observer's callback function (as first parameter in the callback).

entries = list.getEntriesByName(name, type);

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceObserverEntryList/getEntriesByName

Method.

The getEntriesByName() method of the `web.performance.PerformanceObserverEntryList`
returns a list of explicitly observed performance entry objects
a given `name` and `entry type`. The list's members are determined
the set of entry types specified in the call to the `observe()`
The list is available in the observer's callback function (as
first parameter in the callback).

`entries = list.getEntriesByName(name, type);`

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

get-entries-by-typecljs

(get-entries-by-type this type)

Method.

The getEntriesByType() method of the web.performance.PerformanceObserverEntryList a list of explicitly observed performance entry objects for a performance entry type. The list's members are determined by set of entry types specified in the call to the observe() method. list is available in the observer's callback function (as the parameter in the callback).

entries = list.getEntriesByType(type);

See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceObserverEntryList/getEntriesByType

Method.

The getEntriesByType() method of the `web.performance.PerformanceObserverEntryList`
a list of explicitly observed performance entry objects for a
performance entry type. The list's members are determined by
set of entry types specified in the call to the `observe()` method.
list is available in the observer's callback function (as the
parameter in the callback).

`entries = list.getEntriesByType(type);`

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

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

× close