File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
rxjava-core/src/main/java/rx Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -5079,9 +5079,7 @@ public final Observable<T> onExceptionResumeNext(final Observable<? extends T> r
5079
5079
* @see <a href="https://github.com/Netflix/RxJava/wiki/Observable-Utility-Operators#wiki-parallel">RxJava Wiki: parallel()</a>
5080
5080
*/
5081
5081
public final <R > Observable <R > parallel (Func1 <Observable <T >, Observable <R >> f ) {
5082
- // TODO move this back to Schedulers.computation() again once that is properly using eventloops
5083
- // see https://github.com/Netflix/RxJava/issues/713 for why this was changed
5084
- return lift (new OperatorParallel <T , R >(f , Schedulers .newThread ()));
5082
+ return lift (new OperatorParallel <T , R >(f , Schedulers .computation ()));
5085
5083
}
5086
5084
5087
5085
/**
You can’t perform that action at this time.
0 commit comments