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 1cac6fc commit 7084cd0Copy full SHA for 7084cd0
rxjava-core/src/main/java/rx/operators/OperatorParallel.java
@@ -56,6 +56,9 @@ public Integer call(T t) {
56
57
@Override
58
public Observable<R> call(GroupedObservable<Integer, T> g) {
59
+ // Must use observeOn not subscribeOn because we have a single source behind groupBy.
60
+ // The origin is already subscribed to, we are moving each group on to a new thread
61
+ // but the origin itself can only be on a single thread.
62
return f.call(g.observeOn(scheduler));
63
}
64
});
0 commit comments