-
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
Subscription overhaul2 #620
Conversation
RxJava-pull-requests #554 SUCCESS |
I like to keep the number of different Subscriptions as small as possible What is the use-case for ValuedCompositeSubscription? |
Use case for ValuedCompositeSubscription<Observable<? super T>> observers = ... but I usually ended up using regular map and locks anyway. So it is not that essential.
|
I like MultipleAssignmentSubscription, SerialSubscription, SingleAssignmentSubscription hierarchy. |
Why not:
Here I'd need to suppress/override |
Inspired changes done in #661 |
… be less than 10 which causes the test to fail. (ReactiveX#620)
Renamed and changed things according to comments in #603