Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrisbuchholz/todo
An app I made solely to try Realm's brand new support for RxJava
https://github.com/chrisbuchholz/todo
Last synced: about 1 month ago
JSON representation
An app I made solely to try Realm's brand new support for RxJava
- Host: GitHub
- URL: https://github.com/chrisbuchholz/todo
- Owner: ChrisBuchholz
- License: mit
- Created: 2015-12-18T08:36:27.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-18T08:37:24.000Z (almost 9 years ago)
- Last Synced: 2023-03-11T08:41:55.066Z (over 1 year ago)
- Language: Java
- Size: 95.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Todo
This repository (and Android app) was solely created to try out the new support for RxJava in Realm.## Discoveries
At first, I tried to observe on Schedulers.io and subscribe on AndroidSchedulers.mainThread(). That was before I remembered that Realm objects has to be handled on the same thread. This means you can't use subscribeOn. More about it [here](https://github.com/realm/realm-java/issues/1208).### About
The app shows a todo list. Remember that you shouldn't use this app. It's just a sample app### Libraries used
* AppCompat, CardView and RecyclerView
* Realm
* RxJava and RxAndroid
* ButterKnife
* Timber### Things to come
* Add todo feature
* Delete todo feature
* Edit todo feature
* Rewrite/refactor from Java to Kotlin