View source
enum abstract PerformanceEvent(String)
package js.node.perf_hooks
from String to String
import js.node.perf_hooks.Performance
Events emitted by Performance (via EventTarget).
Static variables
staticinlineread onlyResourceTimingBufferFull:PerformanceEvent = "resourcetimingbufferfull"
The 'resourcetimingbufferfull' event is fired when the global performance resource
timing buffer is full. Adjust resource timing buffer size with
performance.setResourceTimingBufferSize() or clear the buffer with
performance.clearResourceTimings() in the event listener to allow more entries
to be added to the performance timeline buffer.
See also: