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

commonMain.com.ditchoom.websocket.WebSocket.kt Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.ditchoom.websocket

import com.ditchoom.buffer.PlatformBuffer
import com.ditchoom.buffer.ReadBuffer
import com.ditchoom.socket.SocketController
import com.ditchoom.socket.SocketDataRead
import kotlin.time.ExperimentalTime

@ExperimentalTime
@ExperimentalUnsignedTypes
interface WebSocket : SocketController {
    suspend fun read(): WebSocketDataRead
    suspend fun write(buffer: PlatformBuffer)
    suspend fun write(string: String)
    suspend fun ping()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy