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 2fa773c commit a43265fCopy full SHA for a43265f
src/main/java/io/reactivex/Flowable.java
@@ -60,7 +60,7 @@ public abstract class Flowable<T> implements Publisher<T> {
60
/** The default buffer size. */
61
static final int BUFFER_SIZE;
62
static {
63
- BUFFER_SIZE = Math.max(16, Integer.getInteger("rx2.buffer-size", 128));
+ BUFFER_SIZE = Math.max(1, Integer.getInteger("rx2.buffer-size", 128));
64
}
65
66
/**
0 commit comments