Interface IndividualSubscriptionHandler
-
- All Implemented Interfaces:
public interface IndividualSubscriptionHandlerCallback handler for subscriptions that handle notifications individually per manager.
-
-
Method Summary
Modifier and Type Method Description abstract voidstartStream(SourceSubscriptionManager subscriptionManager)Indicates the start of a sequence of notifications for a specific manager. abstract voidendStream(SourceSubscriptionManager subscriptionManager)Indicates the end of a sequence of notifications for a specific manager. -
-
Method Detail
-
startStream
abstract 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
abstract 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.
-
-
-
-