We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83f34ad commit 0b9c1fbCopy full SHA for 0b9c1fb
CHANGES.md
@@ -4,17 +4,17 @@
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:
+This means signature changes are modified to be:
8
9
-A new type `Producer` has been added:
+The new type `Producer` ->
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:
+New methods added to `Subscriber` ->
18
19
20
public abstract class Subscriber<T> implements Observer<T>, Subscription {
0 commit comments