script

Module microtask

Source
Expand description

Implementation of microtasks and microtask queues. It is up to implementations of event loops to store a queue and perform checkpoints at appropriate times, as well as enqueue microtasks as required.

StructsΒ§

  • A promise callback scheduled to run during the next microtask checkpoint (#4283).
  • MicrotaskQueue πŸ”’
    A collection of microtasks in FIFO order.
  • UserMicrotask πŸ”’
    A microtask that comes from a queueMicrotask() Javascript call, identical to EnqueuedPromiseCallback once it’s on the queue

EnumsΒ§

TraitsΒ§