PerformanceObserverEntryList

The PerformanceObserverEntryList interface is a list of PerformanceEntry that were explicitly observed via the PerformanceObserver.observe method.

MDN Reference

Functions

Link copied to clipboard

The getEntries() method of the PerformanceObserverEntryList interface returns a list of explicitly observed PerformanceEntry objects.

Link copied to clipboard
fun getEntriesByName(name: String, type: String = definedExternally): PerformanceEntryList

The getEntriesByName() method of the PerformanceObserverEntryList interface returns a list of explicitly observed PerformanceEntry objects for a given PerformanceEntry.name and PerformanceEntry.entryType.

Link copied to clipboard

The getEntriesByType() method of the PerformanceObserverEntryList returns a list of explicitly observed PerformanceEntry objects for a given PerformanceEntry.entryType.