Binary

data class Binary(val bytes: ByteArray) : FrameBody

Represents the body of a StompFrame that was received as a binary web socket frame.

Constructors

Link copied to clipboard
fun Binary(bytes: ByteArray)

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int

Properties

Link copied to clipboard
open override val bytes: ByteArray

The bytes of this frame body. For a text frame, the text is encoded as UTF-8.

Sources

Link copied to clipboard