Interface IndividualSubscriptionHandler
-
public interface IndividualSubscriptionHandlerCallback handler for subscriptions that handle notifications individually per manager.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidendStream(SourceSubscriptionManager subscriptionManager)Indicates the end of a sequence of notifications for a specific manager.voidstartStream(SourceSubscriptionManager subscriptionManager)Indicates the start of a sequence of notifications for a specific manager.
-
-
-
Method Detail
-
startStream
void startStream(SourceSubscriptionManager subscriptionManager)
Indicates the start of a sequence of notifications for a specific manager.- Parameters:
subscriptionManager- the subscription manager for which individual messages are to be sent.
-
endStream
void endStream(SourceSubscriptionManager subscriptionManager)
Indicates the end of a sequence of notifications for a specific manager. This function is only called if a subscription expires or is actively unsubscribed by the event sink.- Parameters:
subscriptionManager- the subscription manager.
-
-