public interface InputReceiver extends OsidReceiver
The input receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Input
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedInput(Id inputId)
The callback for notification of updated inputs.
|
void |
deletedInput(Id inputId)
The callback for notification of deleted inputs.
|
void |
newInput(Id inputId)
The callback for notifications of new inputs.
|
down, up
void newInput(Id inputId)
inputId
- the Id
of the new Input
mandatory
- This method must be implemented. void changedInput(Id inputId)
inputId
- the Id
of the updated Input
mandatory
- This method must be implemented. void deletedInput(Id inputId)
inputId
- the Id
of the deleted Input
mandatory
- This method must be implemented.