Begin

data class Begin(val headers: StompBeginHeaders) : StompFrame

A BEGIN frame is a client frame used to start a transaction.

Transactions in this case apply to sending and acknowledging - any messages sent or acknowledged during a transaction will be processed atomically based on the transaction.

Constructors

Link copied to clipboard
fun Begin(headers: StompBeginHeaders)

Properties

Link copied to clipboard
open val body: FrameBody? = null

The body of this STOMP frame.

Link copied to clipboard
val bodyAsText: String

The body of this frame as text.

Link copied to clipboard
val command: StompCommand

The command of this STOMP frame, which is the first word of the frame.

Link copied to clipboard
open override val headers: StompBeginHeaders

The headers of this STOMP frame.

Sources

Link copied to clipboard