Skip to content

0.20.0-RC2

Pre-release
Pre-release
Compare
Choose a tag to compare
@benjchristensen benjchristensen released this 18 Jul 22:25
· 3073 commits to 3.x since this release

Version 0.20.0-RC2 preview release adds support for backpressure to the zip operators, fixes bugs and removes the Subscribe.onSetProducer method.

This means signature changes are modified to be:

The new type Producer ->

public interface Producer {
    public void request(long n);
}

New methods added to Subscriber ->

public abstract class Subscriber<T> implements Observer<T>, Subscription {
    public void onStart();
    protected final void request(long n);
    public final void setProducer(Producer producer);
}

Artifacts: Maven Central