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).
- 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 π