As the description says:
the
ExtendableEvent.waitUntil()method extends the lifetime of the event.
If you don’t call it inside a method, the service worker could be stopped at any time (see the specification).
So, the waitUntil method is used to tell the browser not to terminate the service worker until the promise passed to waitUntil is either resolved or rejected.
About your specific questions:
- In the case of the
installand theactivateevents, it delays the state switch of the service worker toinstalledandactivated(see the specification of the waitUntil method, in particular the last part of the paragraph). - I think the rest of my answer already answered as to why it is needed.