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 |
changedInputs(Id notificationId,
IdList inputIds)
The callback for notification of updated inputs.
|
void |
deletedInputs(Id notificationId,
IdList inputIds)
The callback for notification of deleted inputs.
|
void |
newInputs(Id notificationId,
IdList inputIds)
The callback for notifications of new inputs.
|
down, upvoid newInputs(Id notificationId, IdList inputIds)
notificationId - the notification Id inputIds - the Id of the new Inputs
mandatory - This method must be implemented. void changedInputs(Id notificationId, IdList inputIds)
notificationId - the notification Id inputIds - the Id of the updated Inputs
mandatory - This method must be implemented.