Interface IndividualSubscriptionHandler

  • All Implemented Interfaces:

    
    public interface IndividualSubscriptionHandler
    
                        

    Callback handler for subscriptions that handle notifications individually per manager.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract void startStream(SourceSubscriptionManager subscriptionManager) Indicates the start of a sequence of notifications for a specific manager.
      abstract void endStream(SourceSubscriptionManager subscriptionManager) Indicates the end of a sequence of notifications for a specific manager.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.