ARK-Builders / ARK-Navigator

Android app for navigation through your data
MIT License
15 stars 15 forks source link

Asynchronous writing to tags storage #174

Open kirillt opened 2 years ago

kirillt commented 2 years ago

At the moment, after tags are changed for a resource, we wait till new state of tags storage is written into filesystem. We can update the storage file in background allowing user to continue working. Right now there is slight delay less than 0.5 sec after applying new tags which can be removed. We must ensure that such coroutines complete even in case of a crash, because we can't afford to lose user's data. So this features depends on #173.