Interface UnsubscribeObserver
-
- All Superinterfaces:
BaseConnectionObserver,BaseObserver
- All Known Implementing Classes:
SubscriptionViewController
public interface UnsubscribeObserver extends BaseConnectionObserver
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidonUnsubscribeCanceled(SubscriptionDTO subscriptionDTO)voidonUnsubscribeFailed(SubscriptionDTO subscriptionDTO, Throwable exception)default voidonUnsubscribeRunning(SubscriptionDTO subscriptionDTO)default voidonUnsubscribeScheduled(SubscriptionDTO subscriptionDTO)voidonUnsubscribeSucceeded(SubscriptionDTO subscriptionDTO)-
Methods inherited from interface org.correomqtt.business.dispatcher.BaseConnectionObserver
getConnectionId
-
-
-
-
Method Detail
-
onUnsubscribeSucceeded
void onUnsubscribeSucceeded(SubscriptionDTO subscriptionDTO)
-
onUnsubscribeCanceled
void onUnsubscribeCanceled(SubscriptionDTO subscriptionDTO)
-
onUnsubscribeFailed
void onUnsubscribeFailed(SubscriptionDTO subscriptionDTO, Throwable exception)
-
onUnsubscribeRunning
default void onUnsubscribeRunning(SubscriptionDTO subscriptionDTO)
-
onUnsubscribeScheduled
default void onUnsubscribeScheduled(SubscriptionDTO subscriptionDTO)
-
-