Closed
Description
I've been adding extra features to my RxJava 2 Extensions project, some of which may be added to RxJava 2.x proper. Here is a table of major features I propose to have in RxJava 2.1
Feature | Est. method cost | Description |
---|---|---|
SingleSubject |
~20 | Hot variant of Single |
MaybeSubject |
~20 | Hot variant of Maybe |
CompletableSubject |
~20 | Hot variant of Completable |
ParallelFlowable |
~700 | Support for parallel execution via Flowable.parallel() fluently |
In addition, I'm open for moving custom operators directly into Flowable
and Observable
(which requires creating some missing operator variants for Observable
at the moment).