Schedules a callback to run in the microtask queue.
It uses the native queueMicrotask when available, otherwise falls back to
Promise.resolve().then(...), and if Promise is unavailable it falls back to
scheduleTimeout(..., 0).
Unlike standard microtasks, this helper returns a cancellable ITimerHandler
so scheduled callbacks can be canceled before execution.
This provides consistent microtask scheduling behavior across all supported runtimes,
including Node.js, browsers, and web workers.
Schedules a callback to run in the microtask queue.
It uses the native
queueMicrotaskwhen available, otherwise falls back toPromise.resolve().then(...), and ifPromiseis unavailable it falls back toscheduleTimeout(..., 0). Unlike standard microtasks, this helper returns a cancellableITimerHandlerso scheduled callbacks can be canceled before execution. This provides consistent microtask scheduling behavior across all supported runtimes, including Node.js, browsers, and web workers.