The PerformanceEntry object encapsulates a single performance
that is part of the performance timeline. A performance entry
be directly created by making a performance web.mark
or web.measure
example by calling the web.mark()
method) at an explicit point
an application. Performance entries are also created in indirect
such as loading a resource (such as an image).
The PerformanceEntry object encapsulates a single performance that is part of the performance timeline. A performance entry be directly created by making a performance `web.mark` or `web.measure` example by calling the `web.mark()` method) at an explicit point an application. Performance entries are also created in indirect such as loading a resource (such as an image).
(duration this)
Property.
The duration property returns a web.timestamp
that is the duration
the web.performance entry
.
entry.duration;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/duration
Property. The duration property returns a `web.timestamp` that is the duration the `web.performance entry`. `entry.duration;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/duration`
(entry-type this)
Property.
The entryType property returns a dom.DOMString
representing
type of performance metric such as, for example, "mark". This
is read only.
var type = entry.entryType;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/entryType
Property. The entryType property returns a `dom.DOMString` representing type of performance metric such as, for example, \"mark\". This is read only. `var type = entry.entryType;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/entryType`
(name this)
Property.
The name property of the performance.PerformanceEntry
interface
a value that further specifies the value returned by the performance.PerformanceEntry.entryType
This property is read only.
var name = entry.name;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/name
Property. The name property of the `performance.PerformanceEntry` interface a value that further specifies the value returned by the `performance.PerformanceEntry.entryType` This property is read only. `var name = entry.name;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/name`
(set-duration! this val)
Property.
The duration property returns a web.timestamp
that is the duration
the web.performance entry
.
entry.duration;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/duration
Property. The duration property returns a `web.timestamp` that is the duration the `web.performance entry`. `entry.duration;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/duration`
(set-entry-type! this val)
Property.
The entryType property returns a dom.DOMString
representing
type of performance metric such as, for example, "mark". This
is read only.
var type = entry.entryType;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/entryType
Property. The entryType property returns a `dom.DOMString` representing type of performance metric such as, for example, \"mark\". This is read only. `var type = entry.entryType;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/entryType`
(set-name! this val)
Property.
The name property of the performance.PerformanceEntry
interface
a value that further specifies the value returned by the performance.PerformanceEntry.entryType
This property is read only.
var name = entry.name;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/name
Property. The name property of the `performance.PerformanceEntry` interface a value that further specifies the value returned by the `performance.PerformanceEntry.entryType` This property is read only. `var name = entry.name;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/name`
(set-start-time! this val)
Property.
The startTime property returns the first recorded web.timestamp
the web.performance entry
.
entry.startTime;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/startTime
Property. The startTime property returns the first recorded `web.timestamp` the `web.performance entry`. `entry.startTime;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/startTime`
(start-time this)
Property.
The startTime property returns the first recorded web.timestamp
the web.performance entry
.
entry.startTime;
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/startTime
Property. The startTime property returns the first recorded `web.timestamp` the `web.performance entry`. `entry.startTime;` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/startTime`
(to-json this)
Method.
The toJSON() method is a serializer; it returns a JSON representation
the web.performance entry
object.
json = perfEntry.toJSON();
See also: https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/toJSON
Method. The toJSON() method is a serializer; it returns a JSON representation the `web.performance entry` object. `json = perfEntry.toJSON();` See also: `https://developer.mozilla.org/en-US/docs/Web/API/PerformanceEntry/toJSON`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close