ru.astrainteractive.astralibs.lifecycle.Lifecycle.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core utilities for spigot development
package ru.astrainteractive.astralibs.lifecycle
interface Lifecycle {
fun onEnable() = Unit
fun onDisable() = Unit
fun onReload() = Unit
class Lambda(
private val onEnable: Lifecycle.() -> Unit = {},
private val onDisable: Lifecycle.() -> Unit = {},
private val onReload: Lifecycle.() -> Unit = {},
) : Lifecycle {
override fun onEnable() {
onEnable.invoke(this)
}
override fun onDisable() {
onDisable.invoke(this)
}
override fun onReload() {
onReload.invoke(this)
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy