LostReceiptException

class LostReceiptException(    val receiptId: String,     val configuredTimeout: Duration,     val frame: StompFrame) : Exception

An exception thrown when a RECEIPT frame was expected from the server, but not received in the configured time limit.

Constructors

Link copied to clipboard
fun LostReceiptException(    receiptId: String,     configuredTimeout: Duration,     frame: StompFrame)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
val configuredTimeout: Duration

The configured timeout which has expired.

Link copied to clipboard
val frame: StompFrame

The frame which did not get acknowledged by the server.

Link copied to clipboard
open val message: String?
Link copied to clipboard
val receiptId: String

The value of the receipt header sent to the server, and expected in a RECEIPT frame.

Sources

Link copied to clipboard