MessageOut Event
Fired after a message has been sent.
Syntax
public class DefaultStompEventListener implements StompEventListener { ... public void messageOut(StompMessageOutEvent e) {} ... } public class StompMessageOutEvent { public String destination; public byte[] data; public String contentType; }
Remarks
This event fires after a message has been sent using either SendMessage or SendData. The following parameters are available within this event:
- Destination: The destination the message was sent to.
- Data: The message's payload.
- ContentType: The content type of the message (always empty for messages sent with SendData).