Stomp uses named transactions so that many transactions can concurrently occur at the same time.
The client specifies the name and it is unique to that client.
so:
| No Format |
|---|
BEGIN transaction: tx1 ^@ |
then you can ack or send using the transaction
| No Format |
|---|
ACK message: ID:19283:wheeeee:1234 transaction: tx1 ^@ |
| No Format |
|---|
SEND destination: /queue/a transaction: tx1 hello queue a! ^@ |
| No Format |
|---|
ABORT transaction: tx1 ^@ |
Would "undo" the ack and send
