Skip to content

Commit ba56962

Browse files
Remove Bad Perf Test
- this just stresses scheduling and at this throughput creates massive garbage and tests the wrong thing
1 parent 5f4efbf commit ba56962

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

rxjava-core/src/perf/java/rx/usecases/PerfTransforms.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,4 @@ public Boolean call(Integer t1) {
9090
input.awaitCompletion();
9191
}
9292

93-
@GenerateMicroBenchmark
94-
public void flatMapAsyncNested(final UseCaseInput input) throws InterruptedException {
95-
input.observable.flatMap(new Func1<Integer, Observable<Integer>>() {
96-
97-
@Override
98-
public Observable<Integer> call(Integer i) {
99-
return input.observable.subscribeOn(Schedulers.computation());
100-
}
101-
102-
}).subscribe(input.observer);
103-
input.awaitCompletion();
104-
}
105-
10693
}

0 commit comments

Comments
 (0)