Interface ProcessProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface ProcessProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedProcessProcessorEnablers(Id notificationId, IdList processProcessorEnablerIds)
    The callback for notification of updated process processor enablers.
    void
    deletedProcessProcessorEnablers(Id notificationId, IdList processProcessorEnablerIds)
    The callback for notification of deleted process processor enablers.
    void
    newProcessProcessorEnablers(Id notificationId, IdList processProcessorEnablerIds)
    The callback for notifications of new process 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

    • newProcessProcessorEnablers

      void newProcessProcessorEnablers(Id notificationId, IdList processProcessorEnablerIds)
      The callback for notifications of new process processor enablers.
      Parameters:
      notificationId - the notification Id
      processProcessorEnablerIds - the Id of the new ProcessProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedProcessProcessorEnablers

      void changedProcessProcessorEnablers(Id notificationId, IdList processProcessorEnablerIds)
      The callback for notification of updated process processor enablers.
      Parameters:
      notificationId - the notification Id
      processProcessorEnablerIds - the Id of the updated ProcessProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedProcessProcessorEnablers

      void deletedProcessProcessorEnablers(Id notificationId, IdList processProcessorEnablerIds)
      The callback for notification of deleted process processor enablers.
      Parameters:
      notificationId - the notification Id
      processProcessorEnablerIds - the Id of the deleted ProcessProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.