We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a9f1f1 commit 30a3f2bCopy full SHA for 30a3f2b
rxjava-core/src/main/java/rx/internal/operators/OperatorZip.java
@@ -276,7 +276,7 @@ void tick() {
276
}
277
if (emitted > THRESHOLD) {
278
for (Object obj : observers) {
279
- ((InnerSubscriber) obj).request(emitted);
+ ((InnerSubscriber) obj).requestMore(emitted);
280
281
emitted = 0;
282
@@ -298,6 +298,10 @@ final class InnerSubscriber extends Subscriber {
298
public void onStart() {
299
request(RxRingBuffer.SIZE);
300
301
+
302
+ public void requestMore(long n) {
303
+ request(n);
304
+ }
305
306
@SuppressWarnings("unchecked")
307
@Override
0 commit comments