I am trying to store data in local storage with a few HTTP calls. I use forkJoin to wait until all calls are completed, and then I want to resume the Promise.then call Promise.then . How to do it?
updateCache() { var cachesToUpdate; return this.fetchServerTimestamps() .then(res => { var localTimestamps = this.getLocalTimestamps(); var serverTimestamps = this.getServerTimestamps();
promise angular typescript observable rxjs
David Kuzmin
source share