Interface ProcessConstrainerReceiver

All Superinterfaces:
OsidReceiver

public interface ProcessConstrainerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedProcessConstrainers(Id notificationId, IdList processConstrainerIds)
    The callback for notification of updated process constrainers.
    void
    deletedProcessConstrainers(Id notificationId, IdList processConstrainerIds)
    The callback for notification of deleted process constrainers.
    void
    newProcessConstrainers(Id notificationId, IdList processConstrainerIds)
    The callback for notifications of new process 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

    • newProcessConstrainers

      void newProcessConstrainers(Id notificationId, IdList processConstrainerIds)
      The callback for notifications of new process constrainers.
      Parameters:
      notificationId - the notification Id
      processConstrainerIds - the Id of the new ProcessConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • changedProcessConstrainers

      void changedProcessConstrainers(Id notificationId, IdList processConstrainerIds)
      The callback for notification of updated process constrainers.
      Parameters:
      notificationId - the notification Id
      processConstrainerIds - the Id of the updated ProcessConstrainers
      Compliance:
      mandatory - This method must be implemented.
    • deletedProcessConstrainers

      void deletedProcessConstrainers(Id notificationId, IdList processConstrainerIds)
      The callback for notification of deleted process constrainers.
      Parameters:
      notificationId - the notification Id
      processConstrainerIds - the Id of the deleted ProcessConstrainers
      Compliance:
      mandatory - This method must be implemented.