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.
2 parents 8bb05b5 + c330e6d commit d93dc37Copy full SHA for d93dc37
language-adaptors/rxjava-scala/src/main/scala/rx/lang/scala/schedulers/ComputationScheduler.scala
@@ -13,13 +13,10 @@ object ComputationScheduler {
13
*
14
* @return { @link Scheduler} for computation-bound work.
15
*/
16
- def apply(): IOScheduler = {
17
- new IOScheduler(rx.schedulers.Schedulers.computation())
+ def apply(): ComputationScheduler = {
+ new ComputationScheduler(rx.schedulers.Schedulers.computation())
18
}
19
20
21
-/**
22
- * Created by netflix on 2/5/14.
23
- */
24
class ComputationScheduler private[scala] (val asJavaScheduler: rx.Scheduler)
25
extends Scheduler {}
0 commit comments