1.2.1 • Published 9 months ago

scheduler-polyfill v1.2.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
9 months ago

Scheduler Polyfill

This is a polyfill for the Prioritized Task Scheduling API. Documentation on the API shape along with examples can be found in the explainer.

The polyfill includes implementations of Scheduler, exposed through self.scheduler, as well as TaskController and TaskPriorityChangeEvent classes.

scheduler.postTask()

The implementation uses a combination of setTimeout, MessageChannel, and requestIdleCallback to implement task scheduling, falling back to setTimeout when other APIs are not available.

The polyfill, like the native implementation, runs scheduler tasks in descending priority order ('user-blocking' > 'user-visible' > 'background'). But there are some differences in the relative order of non-scheduler tasks:

  • "background" tasks are scheduled using requestIdleCallback on browsers that support it, which provides similar scheduling as scheduler. For browsers that don't support it, these tasks do not have low/idle event loop priority.

  • "user-blocking" tasks have the same event loop scheduling prioritization as "user-visible" (similar to setTimeout()), meaning these tasks do not have a higher event loop priority.

scheduler.yield()

scheduler.yield() is available in version 1.2 of the polyfill, published under the next tag on npm. See the Usage section for installation instructions.

The polyfill supports scheduler.yield(), which is currently in Origin Trial in Chrome.

Signal and priority inheritance is not currently supported in the polyfill, and using the "inherit" option will result in the default behavior, i.e. the continuation will not be aborted and will run at default priority.

The scheduling behavior of the polyfill depends on whether the browser supports scheduler.postTask() (i.e. older Chrome versions). If it does, then yield() is polyfilled with postTask(), with the following behavior:

  • "user-visible" continuations run as "user-blocking" scheduler tasks. This means they typically have a higher event loop priority than other tasks (consistent with yield()), but they can be interleaved with other "user-blocking" tasks. The same goes for "user-blocking" continuations.
  • "background" continuations are scheduled as "background" tasks, which means they have lowered event loop priority but don't go ahead of other "background" tasks, so they can be interleaved.

On browsers that don't support scheduler.postTask(), the same event loop prioritization as the postTask() polyfill applies (see above), but continuations have higher priority than tasks of the same priority, e.g. "background" continuations run before "background" tasks.

Requirements

A browser that supports ES6 is required for this polyfill.

Usage

Include via unpkg

Use the next version of the polyfill, which includes `scheduler.yield():

<script src="https://unpkg.com/scheduler-polyfill@next"></script>

or use the current stable release of the polyfill:

<script src="https://unpkg.com/scheduler-polyfill"></script>

Include via npm and a bundler

npm install scheduler-polyfill@next

Or use the stable release (without scheduler.yield()):

npm install scheduler-polyfill

Import to populate the task scheduling global variables, if not already available in the executing browser:

import 'scheduler-polyfill';

Building from source

git clone https://github.com/GoogleChromeLabs/scheduler-polyfill
cd scheduler-polyfill
npm i
npm test        # Tests should pass
npm run build   # Outputs minified polyfill to dist/
<script src="/path_to_polyfill/scheduler-polyfill.js"></script>

License

Apache 2.0