Interface ProcessProcessorReceiver

All Superinterfaces:
OsidReceiver

public interface ProcessProcessorReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedProcessProcessors(Id notificationId, IdList processProcessorIds)
    The callback for notification of updated process processors.
    void
    deletedProcessProcessors(Id notificationId, IdList processProcessorIds)
    The callback for notification of deleted process processors.
    void
    newProcessProcessors(Id notificationId, IdList processProcessorIds)
    The callback for notifications of new process processors.

    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

    • newProcessProcessors

      void newProcessProcessors(Id notificationId, IdList processProcessorIds)
      The callback for notifications of new process processors.
      Parameters:
      notificationId - the notification Id
      processProcessorIds - the Id of the new ProcessProcessors
      Compliance:
      mandatory - This method must be implemented.
    • changedProcessProcessors

      void changedProcessProcessors(Id notificationId, IdList processProcessorIds)
      The callback for notification of updated process processors.
      Parameters:
      notificationId - the notification Id
      processProcessorIds - the Id of the updated ProcessProcessors
      Compliance:
      mandatory - This method must be implemented.
    • deletedProcessProcessors

      void deletedProcessProcessors(Id notificationId, IdList processProcessorIds)
      The callback for notification of deleted process processors.
      Parameters:
      notificationId - the notification Id
      processProcessorIds - the Id of the deleted ProcessProcessors
      Compliance:
      mandatory - This method must be implemented.