Interface CanonicalUnitProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface CanonicalUnitProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedCanonicalUnitProcessorEnablers(Id notificationId, IdList canonicalUnitProcessorEnablerIds)
    The callback for notification of updated canonical unit processor enablers.
    void
    deletedCanonicalUnitProcessorEnablers(Id notificationId, IdList canonicalUnitProcessorEnablerIds)
    The callback for notification of deleted canonical unit processor enablers.
    void
    newCanonicalUnitProcessorEnablers(Id notificationId, IdList canonicalUnitProcessorEnablerIds)
    The callback for notifications of new canonical unit 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

    • newCanonicalUnitProcessorEnablers

      void newCanonicalUnitProcessorEnablers(Id notificationId, IdList canonicalUnitProcessorEnablerIds)
      The callback for notifications of new canonical unit processor enablers.
      Parameters:
      notificationId - the notification Id
      canonicalUnitProcessorEnablerIds - the Ids of the new CanonicalUnitProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedCanonicalUnitProcessorEnablers

      void changedCanonicalUnitProcessorEnablers(Id notificationId, IdList canonicalUnitProcessorEnablerIds)
      The callback for notification of updated canonical unit processor enablers.
      Parameters:
      notificationId - the notification Id
      canonicalUnitProcessorEnablerIds - the Ids of the updated CanonicalUnitProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedCanonicalUnitProcessorEnablers

      void deletedCanonicalUnitProcessorEnablers(Id notificationId, IdList canonicalUnitProcessorEnablerIds)
      The callback for notification of deleted canonical unit processor enablers.
      Parameters:
      notificationId - the notification Id
      canonicalUnitProcessorEnablerIds - the Ids of the deleted CanonicalUnitProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.