-
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
Single.concatEager is not implemented #5974
Comments
How would |
@akarnokd - well, I guess subscribe to all Completables at the same time and complete when all of them complete. I think the current |
There is already an operator for that specific behavior with |
Ah, OK, sorry for the confusion then. But the |
PR welcome. |
What should be the behaviour of the Single.concatEager - subscribe to all and push just the first value received ? |
It should match |
Ok.. i think i know what's going on - will try to submit a pull req for initial review tonight (please bear in mind it will be my first contrib :)) |
Closing via #5976. |
Single.concatEager
andCompletable.concatEager
are not available.Observable.concatEager
andMaybe.concatEager
are. Is there any reason for that or you just haven't gotten to that?It's kind of a pain as I currently cast all my Singles to Maybes, use
Maybe.concatEager
and then cast back... :)The text was updated successfully, but these errors were encountered: