Class UnsubscribeDispatcher
- java.lang.Object
-
- org.correomqtt.business.dispatcher.BaseDispatcher<T>
-
- org.correomqtt.business.dispatcher.BaseConnectionDispatcher<UnsubscribeObserver>
-
- org.correomqtt.business.dispatcher.UnsubscribeDispatcher
-
public class UnsubscribeDispatcher extends BaseConnectionDispatcher<UnsubscribeObserver>
-
-
Field Summary
-
Fields inherited from class org.correomqtt.business.dispatcher.BaseDispatcher
observer
-
-
Constructor Summary
Constructors Constructor Description UnsubscribeDispatcher()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UnsubscribeDispatchergetInstance()voidonUnsubscribeCanceled(String connectionId, SubscriptionDTO subscriptionDTO)voidonUnsubscribeFailed(String connectionId, SubscriptionDTO subscriptionDTO, Throwable exception)voidonUnsubscribeRunning(String connectionId, SubscriptionDTO subscriptionDTO)voidonUnsubscribeScheduled(String connectionId, SubscriptionDTO subscriptionDTO)voidonUnsubscribeSucceeded(String connectionId, SubscriptionDTO subscriptionDTO)-
Methods inherited from class org.correomqtt.business.dispatcher.BaseDispatcher
addObserver, removeObserver
-
-
-
-
Method Detail
-
getInstance
public static UnsubscribeDispatcher getInstance()
-
onUnsubscribeSucceeded
public void onUnsubscribeSucceeded(String connectionId, SubscriptionDTO subscriptionDTO)
-
onUnsubscribeCanceled
public void onUnsubscribeCanceled(String connectionId, SubscriptionDTO subscriptionDTO)
-
onUnsubscribeFailed
public void onUnsubscribeFailed(String connectionId, SubscriptionDTO subscriptionDTO, Throwable exception)
-
onUnsubscribeRunning
public void onUnsubscribeRunning(String connectionId, SubscriptionDTO subscriptionDTO)
-
onUnsubscribeScheduled
public void onUnsubscribeScheduled(String connectionId, SubscriptionDTO subscriptionDTO)
-
-