Interface PoolConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface PoolConstrainerEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedPoolConstrainerEnablers(Id notificationId, IdList poolConstrainerEnablerIds)
    The callback for notification of updated pool constrainer enablers.
    void
    deletedPoolConstrainerEnablers(Id notificationId, IdList poolConstrainerEnablerIds)
    The callback for notification of deleted pool constrainer enablers.
    void
    newPoolConstrainerEnablers(Id notificationId, IdList poolConstrainerEnablerIds)
    The callback for notifications of new pool constrainer 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

    • newPoolConstrainerEnablers

      void newPoolConstrainerEnablers(Id notificationId, IdList poolConstrainerEnablerIds)
      The callback for notifications of new pool constrainer enablers.
      Parameters:
      notificationId - the notification Id
      poolConstrainerEnablerIds - the Id of the new PoolConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedPoolConstrainerEnablers

      void changedPoolConstrainerEnablers(Id notificationId, IdList poolConstrainerEnablerIds)
      The callback for notification of updated pool constrainer enablers.
      Parameters:
      notificationId - the notification Id
      poolConstrainerEnablerIds - the Id of the updated PoolConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedPoolConstrainerEnablers

      void deletedPoolConstrainerEnablers(Id notificationId, IdList poolConstrainerEnablerIds)
      The callback for notification of deleted pool constrainer enablers.
      Parameters:
      notificationId - the notification Id
      poolConstrainerEnablerIds - the Id of the deleted PoolConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.