

function saveSettings () { // Do critical work that is user-visible: validateForm(); showSpinner(); updateUI(); // Defer work that isn't user-visible to a separate task: setTimeout(() => { saveToDatabase(); sendAnalytics(); }, 0); } async function saveSettings () { // Do critical work that is user-visible: validateForm(); showSpinner(); updateUI(); // Yield to the main thread: await scheduler.yield() // Work that isn't user-visible, continued in a separate task: saveToDatabase(); sendAnalytics(); } async function runJobs(jobQueue) { for (const job of jobQueue) { // Run the job: job(); // Yield to the main thread: await yieldToMain(); } } // Yield to the main thread if scheduler.yield() is available. await globalThis.scheduler?.yield?.(); async function runJobs(jobQueue, deadline=50) { let lastYield = performance.now(); for (const job of jobQueue) { // Run the job: job(); // If it's been longer than the deadline, yield to the main thread: if (performance.now() - lastYield > deadline) { await yieldToMain(); lastYield = performance.now(); } } }