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Β§
- Enqueued
Promise πCallback - A promise callback scheduled to run during the next microtask checkpoint (#4283).
- Microtask
Queue π - A collection of microtasks in FIFO order.
- User
Microtask π - A microtask that comes from a queueMicrotask() Javascript call, identical to EnqueuedPromiseCallback once itβs on the queue
EnumsΒ§
- Microtask π
TraitsΒ§
- Microtask
Runnable π