Long Tasks API - Web APIs 编辑
Motivation
The experimental Long Tasks API gives us visibility into tasks that take 50 milliseconds or more. The 50 ms threshold comes from the RAIL Model, in particular the "Response: process events in under 50 ms" section.
Tasks that block the main thread for 50 ms or more cause, among other issues:
- Delayed "Time to interactive".
- High/variable input latency.
- High/variable event handling latency.
- Janky animations and scrolling.
Concepts
Some key terms or ideas that are utilized by the Long Tasks API.
Long task
Any uninterrupted period where the main UI thread is busy for 50 ms or longer. Common examples include:
- Long running event handlers.
- Expensive reflows and other re-renders.
- Work the browser does between different turns of the event loop that exceeds 50 ms.
Culprit browsing context container
The "culprit browsing context container", or "the container" for short, is the top level page, iframe, embed or object that the task occurred within.
Attributions
A list of containers that the task occurred within. For tasks that don't occur within the top level page, the containerId
, containerName
and containerSrc
fields may provide information as to the source of the task.
Usage
var observer = new PerformanceObserver(function(list) {
var perfEntries = list.getEntries();
for (var i = 0; i < perfEntries.length; i++) {
// Process long task notifications:
// report back for analytics and monitoring
// ...
}
});
// register observer for long task notifications
observer.observe({entryTypes: ["longtask"]});
// Long script execution after this will result in queueing
// and receiving "longtask" entries in the observer.
Interfaces
PerformanceLongTaskTiming
- Reports instances of long tasks.
TaskAttributionTiming
- Returns information about the work involved in a long task and its associate frame context.
Specifications
Specification | Status | Comment |
---|---|---|
Long Tasks API 1 | Working Draft | Initial definition. |
Browser compatibility
PerformanceLongTaskTiming
BCD tables only load in the browser
TaskAttributionTiming
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.See also
- GitHub repository contains documentation and some code samples.
- PerfPlanet article on Long Tasks API from 20th December 2017.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论