WebSocketFrame

sealed class WebSocketFrame(source)

A web socket frame.

Inheritors

Types

Link copied to clipboard
data class Binary(val bytes: ByteString) : WebSocketFrame

A web socket binary frame (0x2).

Link copied to clipboard
data class Close(val code: Int, val reason: String?) : WebSocketFrame

A web socket close frame (0x8).

Link copied to clipboard
data class Ping(val bytes: ByteString) : WebSocketFrame

A web socket ping frame (0x9).

Link copied to clipboard
data class Pong(val bytes: ByteString) : WebSocketFrame

A web socket pong frame (0xA).

Link copied to clipboard
data class Text(val text: String) : WebSocketFrame

A web socket text frame (0x1).