Equivalent to EventLoopScheduler in RxJava?

Is there an RxJava equivalent for Rx.Net EventLoopScheduler

?

Looking through the documentation, I think I can create my own Executor and use Schedulers.from(Executor)

to create something like this, but I'm curious to see if there is an existing implementation or a better way to get the behavior EventLoopScheduler

in RxJava.

+3


source to share


1 answer


in new version rxJava (0.18.0) added EventLoopScheduler: see changelog 0.18.0
inrx.schedulers.EventLoopScheduler



+2


source







All Articles