-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
Removing onSetProducer from the API #1456
Removing onSetProducer from the API #1456
Conversation
RxJava-pull-requests #1408 FAILURE |
This simplification looks good. I'd be interested to see the discussion behind this. I take it occurred offline but can you give a summary or copy it through? |
It started because I lobbed this #1452 at @benjchristensen yesterday. I'm not 100% sold on keeping |
@abersnaze pushed me to clean these up and we spent time discussing them and came to the following conclusions:
If I wasn't trying to make these changes additive (and was willing to do massive breaking changes), I would likely do some things differently, but the constraint we have is to not fundamentally break RxJava 0.x while getting to 1.0. |
As What if there is some other external event that means I would like to request items from the producer? (my case is an Android scrolling view, where I would only like items calculated on an |
If I understand correctly, it's triggered by a UI event, which is hot. It cannot work well with
|
If you want to call It was made protected because it is generally intended for inner use only. |
I generally try to compose all events via combinatorial operators such as |
No description provided.