Interface PoolProcessorReceiver

All Superinterfaces:
OsidReceiver

public interface PoolProcessorReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedPoolProcessors(Id notificationId, IdList poolProcessorIds)
    The callback for notification of updated pool processors.
    void
    deletedPoolProcessors(Id notificationId, IdList poolProcessorIds)
    The callback for notification of deleted pool processors.
    void
    newPoolProcessors(Id notificationId, IdList poolProcessorIds)
    The callback for notifications of new pool processors.

    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

    • newPoolProcessors

      void newPoolProcessors(Id notificationId, IdList poolProcessorIds)
      The callback for notifications of new pool processors.
      Parameters:
      notificationId - the notification Id
      poolProcessorIds - the Ids of the new PoolProcessors
      Compliance:
      mandatory - This method must be implemented.
    • changedPoolProcessors

      void changedPoolProcessors(Id notificationId, IdList poolProcessorIds)
      The callback for notification of updated pool processors.
      Parameters:
      notificationId - the notification Id
      poolProcessorIds - the Ids of the updated PoolProcessors
      Compliance:
      mandatory - This method must be implemented.
    • deletedPoolProcessors

      void deletedPoolProcessors(Id notificationId, IdList poolProcessorIds)
      The callback for notification of deleted pool processors.
      Parameters:
      notificationId - the notification Id
      poolProcessorIds - the Ids of the deleted PoolProcessors
      Compliance:
      mandatory - This method must be implemented.