ru.astrainteractive.astralibs.async.BukkitDispatchers.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-bukkit Show documentation
Show all versions of core-bukkit Show documentation
Core utilities for spigot development
The newest version!
package ru.astrainteractive.astralibs.async
import kotlinx.coroutines.CoroutineDispatcher
import ru.astrainteractive.klibs.mikro.core.dispatchers.KotlinDispatchers
/**
* Interface for Bukkit dispatchers which contains Main and Async dispatchers
*/
@Suppress("VariableNaming")
interface BukkitDispatchers : KotlinDispatchers {
val BukkitMain: CoroutineDispatcher
val BukkitAsync: CoroutineDispatcher
override val Main: CoroutineDispatcher
get() = BukkitMain
}