Re: [w3c/ServiceWorker] Find a way for service workers to get their current state (#1077)

> With executing I mean running JavaScript code. I thought you could have several service workers in different states at the same time (installing, activating, active...) but only one running at a time. I mean without real parallelism.

This is not accurate.  You can have multiple service workers in different states and executing in separate threads simultaneously.  Consider an installing worker handling its install event in parallel with the active worker handling fetch events from current page.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/issues/1077#issuecomment-295320052

Received on Wednesday, 19 April 2017 15:54:57 UTC