Skip to content

Commit 83f34ad

Browse files
Version 0.20.0-RC2
1 parent 569edad commit 83f34ad

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

CHANGES.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# RxJava Releases #
22

3+
### Version 0.20.0-RC2 ([Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxjava%22%20AND%20v%3A%220.20.0-RC2%22)) ###
4+
5+
Version 0.20.0-RC2 preview release adds support for backpressure to the `zip` operators, fixes bugs and removes the `Subscribe.onSetProducer` method.
6+
7+
This means signature changes are now:
8+
9+
A new type `Producer` has been added:
10+
11+
```java
12+
public interface Producer {
13+
public void request(long n);
14+
}
15+
```
16+
17+
The `Subscriber` type now has these methods added:
18+
19+
```java
20+
public abstract class Subscriber<T> implements Observer<T>, Subscription {
21+
public void onStart();
22+
protected final void request(long n);
23+
public final void setProducer(Producer producer);
24+
}
25+
```
26+
27+
28+
* [Pull 1448] (https://github.com/Netflix/RxJava/pull/1448) RxScala: Add Scala idiomatic methods
29+
* [Pull 1446] (https://github.com/Netflix/RxJava/pull/1446) Zip with Backpressure Support
30+
* [Pull 1454] (https://github.com/Netflix/RxJava/pull/1454) doOnEachObserver fix
31+
* [Pull 1457] (https://github.com/Netflix/RxJava/pull/1457) MergeDelayError & OnErrorFlatMap w/ Merge
32+
* [Pull 1458] (https://github.com/Netflix/RxJava/pull/1458) Remove Pivot Operator
33+
* [Pull 1459] (https://github.com/Netflix/RxJava/pull/1459) Remove Subscriber.onSetProducer
34+
* [Pull 1462] (https://github.com/Netflix/RxJava/pull/1462) Merge Perf Fix: Re-enable fast-path
35+
* [Pull 1463] (https://github.com/Netflix/RxJava/pull/1463) Merge Bug: Missing Emissions
36+
337
### Version 0.20.0-RC1 ([Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.netflix.rxjava%22%20AND%20v%3A%220.20.0-RC1%22)) ###
438

539

0 commit comments

Comments
 (0)