Interface PoolConstrainerReceiver

All Superinterfaces:
OsidReceiver

public interface PoolConstrainerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedPoolConstrainers(Id notificationId, IdList poolConstrainerIds)
    The callback for notification of updated pool constrainers.
    void
    deletedPoolConstrainers(Id notificationId, IdList poolConstrainerIds)
    The callback for notification of deleted pool constrainers.
    void
    newPoolConstrainers(Id notificationId, IdList poolConstrainerIds)
    The callback for notifications of new pool constrainers.

    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

    • newPoolConstrainers

      void newPoolConstrainers(Id notificationId, IdList poolConstrainerIds)
      The callback for notifications of new pool constrainers.
      Parameters:
      notificationId - the notification Id
      poolConstrainerIds - the Id of the new PoolConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • changedPoolConstrainers

      void changedPoolConstrainers(Id notificationId, IdList poolConstrainerIds)
      The callback for notification of updated pool constrainers.
      Parameters:
      notificationId - the notification Id
      poolConstrainerIds - the Id of the updated PoolConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • deletedPoolConstrainers

      void deletedPoolConstrainers(Id notificationId, IdList poolConstrainerIds)
      The callback for notification of deleted pool constrainers.
      Parameters:
      notificationId - the notification Id
      poolConstrainerIds - the Id of the deleted PoolConstrainers
      Compliance:
      mandatory - This method must be implemented.