Preview for version 3 of RxJava, the modern ReactiveX style library for composing (a)synchronous sequences of data and events.
// shared components
compile "com.github.akarnokd:rxjava3-common:0.1.0"
// Flowable only
compile "com.github.akarnokd:rxjava3-flowable:0.1.0"
// Observable, Single, Maybe, Completable
compile "com.github.akarnokd:rxjava3-observable:0.1.0"
// Interoperation between Flowable and the rest
compile "com.github.akarnokd:rxjava3-interop:0.1.0"
This is an unofficial preparation place for RxJava 3 where the major change is the repackaging of certain components into separate libraries:
rxjava3-common
- Disposable
- Scheduler
- concurrent queues
- utility classes
- dependencies: none
rxjava3-flowable
Flowable
class- operators return
Flowable
- backpressure related utilities
- dependencies: rxjava3-commons, reactive-streams-extensions (-> reactive-streams)
rxjava3-observable
Observable
,Single
,Maybe
,Completable
classes- operators return the most appropriate reactive type
FusedQueueDisposable
- operator fusion forObservable
operators- utility classes
- dependencies: rxjava3-commons
rxjava3-interop
- transformers and converters between the backpressured
Flowable
and the non-backpressuredObservable
types - dependencies: rxjava3-flowable, rxjava3-observable, (-> rxjava3-commons, reactive-streams-extensions, reactive-streams)
- transformers and converters between the backpressured