File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
language-adaptors/rxjava-scala/src/main/scala/rx/lang/scala/concurrency Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ object ThreadPoolForComputationScheduler {
26
26
*
27
27
* This can be used for event-loops, processing callbacks and other computational work.
28
28
*
29
- * Do not perform IO-bound work on this scheduler. Use [[rx.lang.scala.concurrency.Schedulers.threadPoolForIO ]] instead.
29
+ * Do not perform IO-bound work on this scheduler. Use [[rx.lang.scala.concurrency.ThreadPoolForIOScheduler ]] instead.
30
30
*/
31
- def apply (): ThreadPoolForComputationScheduler = {
31
+ def apply (): ThreadPoolForComputationScheduler = {
32
32
new ThreadPoolForComputationScheduler (rx.concurrency.Schedulers .threadPoolForComputation())
33
33
}
34
34
}
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ object ThreadPoolForIOScheduler {
26
26
*
27
27
* This can be used for asynchronously performing blocking IO.
28
28
*
29
- * Do not perform computational work on this scheduler. Use [[rx.lang.scala.concurrency.Schedulers.threadPoolForComputation ]] instead.
29
+ * Do not perform computational work on this scheduler. Use [[rx.lang.scala.concurrency.ThreadPoolForComputationScheduler ]] instead.
30
30
*/
31
- def apply (): ThreadPoolForIOScheduler = {
31
+ def apply (): ThreadPoolForIOScheduler = {
32
32
new ThreadPoolForIOScheduler (rx.concurrency.Schedulers .threadPoolForIO())
33
33
}
34
34
}
You can’t perform that action at this time.
0 commit comments