tree: 875574ee8a8f400f55b2804e23c6f32a24351a29 [path history] [tgz]
  1. base/
  2. common/
  3. main_thread/
  4. public/
  5. test/
  6. worker/
  7. BUILD.gn
  8. DEPS
  9. OWNERS
  10. README.md
third_party/blink/renderer/platform/scheduler/README.md

Blink Scheduler

This directory contains the Blink Scheduler, which coordinates task execution in renderer processes. The main subdirectories are:

  • base/ -- basic scheduling primitives such as TaskQueue and SequenceManager.
  • child/ -- contains the ChildScheduler which is the base class for all thread schedulers, as well as a WorkerScheduler for worker threads.
  • utility/ -- a small scheduler for utility processes.
  • renderer/ -- RendererScheduler for the renderer process.

The scheduler exposes an API at public/platform/scheduler.

Documentation

The following is a collection of scheduling-related documentation about the Blink Scheduler as well as other schedulers in Chrome.

2018

2017

2016

2015

2014

2013

Miscellaneous