Interface ProcessConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface ProcessConstrainerEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedProcessConstrainerEnablers(Id notificationId, IdList processConstrainerEnablerIds)
    The callback for notification of updated process constrainer enablers.
    void
    deletedProcessConstrainerEnablers(Id notificationId, IdList processConstrainerEnablerIds)
    The callback for notification of deleted process constrainer enablers.
    void
    newProcessConstrainerEnablers(Id notificationId, IdList processConstrainerEnablerIds)
    The callback for notifications of new process 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

    • newProcessConstrainerEnablers

      void newProcessConstrainerEnablers(Id notificationId, IdList processConstrainerEnablerIds)
      The callback for notifications of new process constrainer enablers.
      Parameters:
      notificationId - the notification Id
      processConstrainerEnablerIds - the Id of the new ProcessConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedProcessConstrainerEnablers

      void changedProcessConstrainerEnablers(Id notificationId, IdList processConstrainerEnablerIds)
      The callback for notification of updated process constrainer enablers.
      Parameters:
      notificationId - the notification Id
      processConstrainerEnablerIds - the Id of the updated ProcessConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedProcessConstrainerEnablers

      void deletedProcessConstrainerEnablers(Id notificationId, IdList processConstrainerEnablerIds)
      The callback for notification of deleted process constrainer enablers.
      Parameters:
      notificationId - the notification Id
      processConstrainerEnablerIds - the Id of the deleted ProcessConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.