Package com.webmethods.jms.protocol
Interface ReplyCb
-
- All Known Implementing Classes:
WmClusterMessageConsumerImpl
,WmClusterQueueBrowserImpl
,WmClusterQueueReceiverImpl
,WmClusterTopicSubscriberImpl
,WmClusterXAMessageConsumerImpl
,WmClusterXAQueueReceiverImpl
,WmClusterXATopicSubscriberImpl
,WmCompositeMessageConsumerImpl
,WmCompositeQueueReceiverImpl
,WmCompositeTopicSubscriberImpl
,WmMessageConsumerImpl
,WmQueueBrowserImpl
,WmQueueReceiverImpl
,WmTopicSubscriberImpl
public interface ReplyCb
This interface is used for asynchronous notification of Broker replies.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onReply(Notification notification)
Called when a Broker reply is received by the notification request.
-
-
-
Method Detail
-
onReply
void onReply(Notification notification)
Called when a Broker reply is received by the notification request. The notification is not automatically unregistered, and must be done so manually by callingNotification.unregister()
.- Parameters:
notification
- the notification that received a Broker reply
-
-