mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-06-30 17:34:39 -05:00
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
|
|
}
|
|
}
|