Interface StepProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface StepProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds)
    The callback for notification of updated step processor enablers.
    void
    deletedStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds)
    The callback for notification of deleted step processor enablers.
    void
    newStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds)
    The callback for notifications of new step 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

    • newStepProcessorEnablers

      void newStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds)
      The callback for notifications of new step processor enablers.
      Parameters:
      notificationId - the notification Id
      stepProcessorEnablerIds - the Ids of the new StepProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedStepProcessorEnablers

      void changedStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds)
      The callback for notification of updated step processor enablers.
      Parameters:
      notificationId - the notification Id
      stepProcessorEnablerIds - the Ids of the updated StepProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedStepProcessorEnablers

      void deletedStepProcessorEnablers(Id notificationId, IdList stepProcessorEnablerIds)
      The callback for notification of deleted step processor enablers.
      Parameters:
      notificationId - the notification Id
      stepProcessorEnablerIds - the Ids of the deleted StepProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.