Interface PoolEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface PoolEnablerReceiver extends OsidReceiver

The pool receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted PoolEnablers .

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedPoolEnablers(Id notificationId, IdList poolEnablerIds)
    The callback for notification of updated pool enablers.
    void
    deletedPoolEnablers(Id notificationId, IdList poolEnablerIds)
    The callback for notification of deleted pool enablers.
    void
    newPoolEnablers(Id notificationId, IdList poolEnablerIds)
    The callback for notifications of new pool enablers.

    Methods inherited from interface OsidReceiver

    down, up
    Modifier and Type
    Method
    Description
    void
    The callback for notifications that the notification bus is not operating.
    void
    up()
    The callback for notifications that the notification bus is operational.
  • Method Details

    • newPoolEnablers

      void newPoolEnablers(Id notificationId, IdList poolEnablerIds)
      The callback for notifications of new pool enablers.
      Parameters:
      notificationId - the notification Id
      poolEnablerIds - the Id of the new PoolEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedPoolEnablers

      void changedPoolEnablers(Id notificationId, IdList poolEnablerIds)
      The callback for notification of updated pool enablers.
      Parameters:
      notificationId - the notification Id
      poolEnablerIds - the Id of the updated PoolEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedPoolEnablers

      void deletedPoolEnablers(Id notificationId, IdList poolEnablerIds)
      The callback for notification of deleted pool enablers.
      Parameters:
      notificationId - the notification Id
      poolEnablerIds - the Id of the deleted PoolEnablers
      Compliance:
      mandatory - This method must be implemented.