Interface StompSession.Receiptable
- All Known Subinterfaces:
StompSession.Subscription
- Enclosing interface:
- StompSession
public static interface StompSession.Receiptable
A handle to use to track receipts.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addReceiptLostTask
(Runnable runnable) Task to invoke when a receipt is not received in the configured time.void
addReceiptTask
(Runnable runnable) Task to invoke when a receipt is received.Return the receipt id, ornull
if the STOMP frame for which the handle was returned did not have a "receipt" header.
-
Method Details
-
getReceiptId
Return the receipt id, ornull
if the STOMP frame for which the handle was returned did not have a "receipt" header. -
addReceiptTask
Task to invoke when a receipt is received.- Throws:
IllegalArgumentException
- if the receiptId isnull
-
addReceiptLostTask
Task to invoke when a receipt is not received in the configured time.- Throws:
IllegalArgumentException
- if the receiptId isnull
- See Also:
-