public interface StepReceiver extends OsidReceiver
The step receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Step
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedSteps(IdList stepIds)
The callback for notification of updated steps.
|
void |
deletedSteps(IdList stepIds)
The callback for notification of deleted steps.
|
void |
newSteps(IdList stepIds)
The callback for notifications of new steps.
|
down, up
void newSteps(IdList stepIds)
stepIds
- the Ids
of the new Steps
mandatory
- This method must be implemented. void changedSteps(IdList stepIds)
stepIds
- the Ids
of the updated Steps
mandatory
- This method must be implemented. void deletedSteps(IdList stepIds)
stepIds
- the Ids
of the deleted Steps
mandatory
- This method must be implemented.