console.info("[WorkerInit] ✅ All worker pools initialized successfully"); } catch (error) { console.warn( "[WorkerInit] ⚠️ Worker pool initialization failed (will fall back to main thread):", errorinstanceofError ? error.message : String(error), ); // Non-critical: if workers fail, the app falls back to main thread execution // Re-throw to allow error handling in the caller throwerror; } }
Description
Non-blocking worker pool initialization for the renderer process. Loads worker pools in parallel with UI rendering to improve startup performance.
Source