Interface PoolProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface PoolProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedPoolProcessorEnablers(Id notificationId, IdList poolProcessorEnablerIds)
    The callback for notification of updated pool processor enablers.
    void
    deletedPoolProcessorEnablers(Id notificationId, IdList poolProcessorEnablerIds)
    The callback for notification of deleted pool processor enablers.
    void
    newPoolProcessorEnablers(Id notificationId, IdList poolProcessorEnablerIds)
    The callback for notifications of new pool processor 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

    • newPoolProcessorEnablers

      void newPoolProcessorEnablers(Id notificationId, IdList poolProcessorEnablerIds)
      The callback for notifications of new pool processor enablers.
      Parameters:
      notificationId - the notification Id
      poolProcessorEnablerIds - the Ids of the new PoolProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedPoolProcessorEnablers

      void changedPoolProcessorEnablers(Id notificationId, IdList poolProcessorEnablerIds)
      The callback for notification of updated pool processor enablers.
      Parameters:
      notificationId - the notification Id
      poolProcessorEnablerIds - the Ids of the updated PoolProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedPoolProcessorEnablers

      void deletedPoolProcessorEnablers(Id notificationId, IdList poolProcessorEnablerIds)
      The callback for notification of deleted pool processor enablers.
      Parameters:
      notificationId - the notification Id
      poolProcessorEnablerIds - the Ids of the deleted PoolProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.