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 901e83e commit 8c3dd49Copy full SHA for 8c3dd49
src/main/java/rx/internal/operators/OperatorObserveOn.java
@@ -221,7 +221,7 @@ void pollQueue() {
221
return;
222
}
223
224
- REQUESTED.incrementAndGet(this);
+ BackpressureUtils.getAndAddRequest(REQUESTED, this, 1);
225
break;
226
} else {
227
if (!on.accept(child, o)) {
@@ -231,7 +231,7 @@ void pollQueue() {
231
232
233
// we hit the end ... so increment back to 0 again
234
235
236
237
0 commit comments