Unsubscribed Event
Fired when the component has unsubscribed from a message destination on the server.
Syntax
public class DefaultStompEventListener implements StompEventListener { ... public void unsubscribed(StompUnsubscribedEvent e) {} ... } public class StompUnsubscribedEvent { public String id; public String destination; }
Remarks
This event fires each time the component has unsubscribed from a message destination on the server. The following parameters are available within this event:
- Id: The Id that was used to identify the subscription.
- Destination: The message destination on the server which the subscription was associated with.