我刚刚开始掌握RxJava,并希望在我的项目中实现新的API。
目前应用程序的简短工作流程非常常见:
Dispatch event and start the corresponding Loader
- > handle response in OnError/OnSucces callbacks
- > save data in Database
- > post event with EventBus
- > read from the Database
很清楚我们如何使用Rx实现相同的功能 - 除了一件事 - 应该如何管理数据库?
我在他的Observable DB上认识了Jake Wharton is working,但有没有任何做法可以将现有数据库与RxJava一起使用?