All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.ditchoom.socket.ConnectionState.kt Maven / Gradle / Ivy

package com.ditchoom.socket

sealed interface ConnectionState {
    data object Initialized : ConnectionState

    data object Connecting : ConnectionState

    data object Connected : ConnectionState

    open class Disconnected(val t: Throwable? = null) : ConnectionState
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy