19 lines
397 B
Kotlin
19 lines
397 B
Kotlin
package rx.android.schedulers
|
|
|
|
import rx.Scheduler
|
|
import rx.internal.schedulers.ImmediateScheduler
|
|
|
|
class AndroidSchedulers {
|
|
companion object {
|
|
val mainThreadScheduler by lazy {
|
|
ImmediateScheduler.INSTANCE!!
|
|
}
|
|
|
|
/**
|
|
* Simulated main thread scheduler
|
|
*/
|
|
@JvmStatic
|
|
fun mainThread(): Scheduler = mainThreadScheduler
|
|
}
|
|
}
|