Releases: ReactiveX/RxJavaReactiveStreams
Releases · ReactiveX/RxJavaReactiveStreams
1.2.1
Notable changes:
- Upgrade to RxJava 1.2.2
- Remove the RS Subscriber reuse check from the PublisherAdapter to allow subscribing with the same exact instance if the downstream wants to (Flowable.concat, Flowable.retry, etc use the same instance when subscribing to every source because they are safe to do so).
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
Version 1.0.0 release along with Reactive Streams 1.0.0.
A Reactive Stream Publisher
can be created from an Observable
like this:
// Create a publisher
Observable<Integer> observable = Observable.from(ints);
Publisher<Integer> publisher = RxReactiveStreams.toPublisher(observable);
And a Publisher
can be converted to an Observable
like this:
// Convert to an Rx Observable to do further transforms
Observable<String> lines = RxReactiveStreams.toObservable(stringsPublisher);
The artifact is available on Maven Central and can be imported with this dependency information:
<dependency>
<groupId>io.reactivex</groupId>
<artifactId>rxjava-reactive-streams</artifactId>
<version>1.0.0</version>
</dependency>
compile 'io.reactivex:rxjava-reactive-streams:1.0.0'
0.1.0
Initial work on bridge between RxJava and Reactive Streams.