Single.concatEager is not implemented
See original GitHub issueSingle.concatEager
and Completable.concatEager
are not available. Observable.concatEager
and Maybe.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… 😃
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (7 by maintainers)
Top Results From Across the Web
Single (RxJava Javadoc 3.1.5) - ReactiveX
The Single class implements the Reactive Pattern for a single value response. Single behaves similarly to Observable except that it can only emit...
Read more >RxJava tricky startWith(Observable) - Stack Overflow
1 Answer 1 ... The direction was good, but you need publish(Function) to share observable1 's signals and concatEager to not lose elements...
Read more >io.reactivex.rxjava2/rxjava/2.2.11 : io/reactivex/Single.java
/** * Implement this method in subclasses to handle the incoming {@link SingleObserver}s. * <p>There is no need to call any of the...
Read more >Observable (RxJava Javadoc 2.0.6)
Concatenates a sequence of ObservableSources eagerly into a single stream of values. static <T> Observable<T>, concatEager(java.lang.
Read more >io.reactivex.Flowable.concatEager java code examples
Concatenates a sequence of Publishers eagerly into a single stream of values. * <p> * Eager concatenation means that once a subscriber subscribes, ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
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.