Uses of Interface
org.springframework.messaging.simp.stomp.StompSession.Subscription
Packages that use StompSession.Subscription Package Description org.springframework.messaging.simp.stomp Generic support for simple messaging protocols (like STOMP).Uses of StompSession.Subscription in org.springframework.messaging.simp.stomp
Methods in org.springframework.messaging.simp.stomp that return StompSession.Subscription Modifier and Type Method Description StompSession.SubscriptionDefaultStompSession. subscribe(String destination, StompFrameHandler handler)StompSession.SubscriptionDefaultStompSession. subscribe(StompHeaders headers, StompFrameHandler handler)StompSession.SubscriptionStompSession. subscribe(String destination, StompFrameHandler handler)Subscribe to the given destination by sending a SUBSCRIBE frame and handle received messages with the specifiedStompFrameHandler.StompSession.SubscriptionStompSession. subscribe(StompHeaders headers, StompFrameHandler handler)An overloaded version ofStompSession.subscribe(String, StompFrameHandler)with fullStompHeadersinstead of just a destination.