public interface InstructionReceiver extends OsidReceiver
The instruction receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted instructions.
| Modifier and Type | Method and Description |
|---|---|
void |
changedInstructions(IdList instructionIds)
The callback for notification of updated instructions.
|
void |
deletedInstructions(IdList instructionIds)
The callback for notification of deleted instructions.
|
void |
newInstructions(IdList instructionIds)
The callback for notifications of new instructions.
|
down, upvoid newInstructions(IdList instructionIds)
instructionIds - the Ids of the new
Instructions mandatory - This method must be implemented. void changedInstructions(IdList instructionIds)
instructionIds - the Ids of the updated
Instructions mandatory - This method must be implemented. void deletedInstructions(IdList instructionIds)
instructionIds - the Ids of the deleted
Instructions mandatory - This method must be implemented.