steroid-team / app

Helping you organise your day with ease and privacy.
1 stars 2 forks source link

Make TodoRepository asynchronous #69

Closed YagoGG closed 3 years ago

YagoGG commented 3 years ago

The current FirebaseDatabase implementation is blocking, which means that all database interactions stop the app's interface until the DB operation has finished.

We should add an intermediate layer that allows doing calling the operations synchronously, but that the actual work is done in the background (so the user can keep using the app while the DB is synchronized).