Interface JobProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface JobProcessorEnablerReceiver extends OsidReceiver

The job processor enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted job processor enablers.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedJobProcessorEnablers(Id notificationId, IdList jobProcessorEnablerIds)
    The callback for notification of updated job processor enablers.
    void
    deletedJobProcessorEnablers(Id notificationId, IdList jobProcessorEnablerIds)
    The callback for notification of deleted job processor enablers.
    void
    newJobProcessorEnablers(Id notificationId, IdList jobProcessorEnablerIds)
    The callback for notifications of new job 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

    • newJobProcessorEnablers

      void newJobProcessorEnablers(Id notificationId, IdList jobProcessorEnablerIds)
      The callback for notifications of new job processor enablers.
      Parameters:
      notificationId - the notification Id
      jobProcessorEnablerIds - the Ids of the new JobProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedJobProcessorEnablers

      void changedJobProcessorEnablers(Id notificationId, IdList jobProcessorEnablerIds)
      The callback for notification of updated job processor enablers.
      Parameters:
      notificationId - the notification Id
      jobProcessorEnablerIds - the Ids of the updated JobProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedJobProcessorEnablers

      void deletedJobProcessorEnablers(Id notificationId, IdList jobProcessorEnablerIds)
      The callback for notification of deleted job processor enablers.
      Parameters:
      notificationId - the notification Id
      jobProcessorEnablerIds - the Ids of the deleted JobProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.