commonMain.dev.datlag.kast.ConnectionState.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kast-jvm Show documentation
Show all versions of kast-jvm Show documentation
Kotlin multiplatform casting library.
The newest version!
package dev.datlag.kast
import kotlinx.serialization.Serializable
@Serializable
sealed interface ConnectionState {
@Serializable
data object DISCONNECTED : ConnectionState
@Serializable
data object CONNECTING : ConnectionState
@Serializable
data object CONNECTED : ConnectionState
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy