Receipt

data class Receipt(val headers: StompReceiptHeaders) : StompFrame

A RECEIPT frame is sent from the server to the client once the server has successfully processed a client frame that requests a receipt. It is expected from the server when the client frame has a receipt header.

Constructors

Link copied to clipboard
fun Receipt(headers: StompReceiptHeaders)

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: StompReceiptHeaders

The headers of this STOMP frame.

Sources

Link copied to clipboard