-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding RxJava example #1940
Adding RxJava example #1940
Conversation
Ready for review: |
|
||
# Things to keep in mind | ||
|
||
- Observables might have a default `Scheduler` they operate on that is different than the one |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"throw a" -> "throw an"
} | ||
} | ||
|
||
productFlavors { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this be removed since it's an empty block?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it should be removed.
This is good. I found it fairly comprehensive and covered some of the gotchas that I was wondering about. Other than the small things mentioned. |
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_main); | ||
container = (ViewGroup) findViewById(R.id.list); | ||
container.removeAllViews(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
useless ?
LGTM besides small comments 👍 |
Nice 👍 |
Part of #1710
This PR replaces #1870
It adds a new example project showing how Realm can interop with RxJava, especially it highlights some of our current caveats and show work-arounds.