Interface NcNotificationsListener
-
- All Superinterfaces:
EventListener,org.opendaylight.yangtools.yang.binding.NotificationListener
@Generated("mdsal-binding-generator") public interface NcNotificationsListener extends org.opendaylight.yangtools.yang.binding.NotificationListener
Interface for implementing the following YANG notifications defined in module nc-notificationsnotification replayComplete { } notification notificationComplete { }
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonNotificationComplete(NotificationComplete notification)This notification is sent to signal the end of a notification subscription.voidonReplayComplete(ReplayComplete notification)This notification is sent to signal the end of a replay portion of a subscription.
-
-
-
Method Detail
-
onReplayComplete
void onReplayComplete(ReplayComplete notification)
This notification is sent to signal the end of a replay portion of a subscription.
-
onNotificationComplete
void onNotificationComplete(NotificationComplete notification)
This notification is sent to signal the end of a notification subscription. It is sent in the case that stopTime was specified during the creation of the subscription..
-
-