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.

Like all OsidReceivers, notifications are delivered to ProcessConstrainerReceiver serially and a receiver method is not invoked again until any previous invocation has returned.

  • 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
  • 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.