Ack

data class Ack(val headers: StompAckHeaders) : StompFrame

An ACK frame is a client frame used to acknowledge consumption of a message from a subscription using client or client-individual acknowledgment. Any messages received from such a subscription will not be considered to have been consumed until the message has been acknowledged via an ACK.

Constructors

Link copied to clipboard
fun Ack(headers: StompAckHeaders)

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

The headers of this STOMP frame.

Sources

Link copied to clipboard