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

commonMain.dev.icerock.moko.socket.SocketEvent.kt Maven / Gradle / Ivy

/*
 * Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
 */

package dev.icerock.moko.socket

expect sealed class SocketEvent {
    object Connect : SocketEvent
    object Connecting : SocketEvent
    object Disconnect : SocketEvent
    object Error : SocketEvent
    object Message : SocketEvent
    object Reconnect : SocketEvent
    object ReconnectAttempt : SocketEvent
    object Ping : SocketEvent
    object Pong : SocketEvent
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy