commonMain.com.ditchoom.websocket.DataRead.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of websocket Show documentation
Show all versions of websocket Show documentation
Simple multiplatform kotlin coroutines based websocket.
package com.ditchoom.websocket
import com.ditchoom.buffer.ReadBuffer
sealed class DataRead {
class Ping(val buffer: ReadBuffer) : DataRead()
class Pong(val buffer: ReadBuffer) : DataRead()
class BinaryDataRead(val data: ReadBuffer) : DataRead()
class StringDataRead(val string: String) : DataRead()
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy