public interface StepProcessorReceiver extends OsidReceiver
The step processor receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted step processors.
Modifier and Type | Method and Description |
---|---|
void |
changedStepProcessors(Id notificationId,
IdList stepProcessorIds)
The callback for notification of updated step processors.
|
void |
deletedStepProcessors(Id notificationId,
IdList stepProcessorIds)
The callback for notification of deleted step processors.
|
void |
newStepProcessors(Id notificationId,
IdList stepProcessorIds)
The callback for notifications of new step processors.
|
down, up
void newStepProcessors(Id notificationId, IdList stepProcessorIds)
notificationId
- the notification IdstepProcessorIds
- the Ids
of the new
StepProcessors
mandatory
- This method must be implemented. void changedStepProcessors(Id notificationId, IdList stepProcessorIds)
notificationId
- the notification IdstepProcessorIds
- the Ids
of the updated
StepProcessors
mandatory
- This method must be implemented. void deletedStepProcessors(Id notificationId, IdList stepProcessorIds)
notificationId
- the notification IdstepProcessorIds
- the Ids
of the deleted
StepProcessors
mandatory
- This method must be implemented.