Skip to content

Preview for version 3 of RxJava, the modern ReactiveX style library for composing (a)synchronous sequences of data and events

License

Notifications You must be signed in to change notification settings

stepango/RxKotlin3-preview

 
 

Repository files navigation

RxJava3-preview

codecov.io Maven Central

Preview for version 3 of RxJava, the modern ReactiveX style library for composing (a)synchronous sequences of data and events.

Dependency

// 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"

Structure

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 for Observable operators
    • utility classes
    • dependencies: rxjava3-commons
  • rxjava3-interop
    • transformers and converters between the backpressured Flowable and the non-backpressured Observable types
    • dependencies: rxjava3-flowable, rxjava3-observable, (-> rxjava3-commons, reactive-streams-extensions, reactive-streams)

About

Preview for version 3 of RxJava, the modern ReactiveX style library for composing (a)synchronous sequences of data and events

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 99.8%
  • Other 0.2%