public interface DeviceReceiver extends OsidReceiver
The device receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Device
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedDevices(Id notificationId,
IdList deviceIds)
The callback for notification of updated devices.
|
void |
deletedDevices(Id notificationId,
IdList deviceIds)
The callback for notification of deleted devices.
|
void |
newDevices(Id notificationId,
IdList deviceIds)
The callback for notifications of new devices.
|
down, upvoid newDevices(Id notificationId, IdList deviceIds)
notificationId - the notification Id deviceIds - the Ids of the new Devices
mandatory - This method must be implemented. void changedDevices(Id notificationId, IdList deviceIds)
notificationId - the notification Id deviceIds - the Ids of the updated Devices
mandatory - This method must be implemented.