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 |
changedStepProcessor(Id stepProcessorId)
The callback for notification of updated step processors.
|
void |
deletedStepProcessor(Id stepProcessorId)
The callback for notification of deleted step processors.
|
void |
newStepProcessor(Id stepProcessorId)
The callback for notifications of new step processors.
|
down, up
void newStepProcessor(Id stepProcessorId)
stepProcessorId
- the Id
of the new
StepProcessor
mandatory
- This method must be implemented. void changedStepProcessor(Id stepProcessorId)
stepProcessorId
- the Id
of the updated
StepProcessor
mandatory
- This method must be implemented. void deletedStepProcessor(Id stepProcessorId)
stepProcessorId
- the Id
of the deleted
StepProcessor
mandatory
- This method must be implemented.