18.10.2016 Views

* Progressive Web Apps

progressive-web-apps-roes-moosmann-gdg-hamburg-10-2016

progressive-web-apps-roes-moosmann-gdg-hamburg-10-2016

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Background Sync<br />

navigator.serviceWorker.ready.then(sw => {<br />

sw.sync.register('send-msgs');<br />

});<br />

IndexedDB<br />

self.addEventListener('sync', ev => {<br />

if (ev.tag === 'send-msgs') {<br />

const promise = sendSomeCachedData();<br />

ev.waitUntil(promise);<br />

}<br />

});

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!