Thiago
Thiago
Thanks for response! Actually, I was looking for a function that verifies if whole data is already synchronized in my application.
It would be like to verify if every promise in AngularFire2 Offline is settled, like this: ``` typescript myclass { counter: number = 0; update() { this.counter++; const promise =...
If I am able to get the promises of emulated updates which are made when app starts, I can count remaining promises, like I said [in the comment above](https://github.com/adriancarriger/angularfire2-offline/issues/69#issuecomment-326628287). Is...
Thanks @larssn ! But in case of app would be killed, these promises (which are not resolved yet) would be lost. Then the app is open again, how could I...