Package | Description |
---|---|
org.springframework.messaging.simp.stomp |
Generic support for simple messaging protocols (like STOMP).
|
Modifier and Type | Interface and Description |
---|---|
static interface |
StompSession.Subscription
A handle to use to unsubscribe or to track a receipt.
|
Modifier and Type | Method and Description |
---|---|
StompSession.Receiptable |
StompSession.acknowledge(StompHeaders headers,
boolean consumed)
An overloaded version of
StompSession.acknowledge(String, boolean) with
full StompHeaders instead of just a messageId . |
StompSession.Receiptable |
DefaultStompSession.acknowledge(StompHeaders headers,
boolean consumed) |
StompSession.Receiptable |
StompSession.acknowledge(String messageId,
boolean consumed)
Send an acknowledgement whether a message was consumed or not resulting
in an ACK or NACK frame respectively.
|
StompSession.Receiptable |
DefaultStompSession.acknowledge(String messageId,
boolean consumed) |
StompSession.Receiptable |
StompSession.send(StompHeaders headers,
Object payload)
An overloaded version of
StompSession.send(String, Object) with full
StompHeaders instead of just a destination. |
StompSession.Receiptable |
DefaultStompSession.send(StompHeaders headers,
Object payload) |
StompSession.Receiptable |
StompSession.send(String destination,
Object payload)
Send a message to the specified destination, converting the payload to a
byte[] with the help of a
MessageConverter . |
StompSession.Receiptable |
DefaultStompSession.send(String destination,
Object payload) |