public interface MeterReceiver extends OsidReceiver
The meter receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Meter
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedMeters(IdList meterIds)
The callback for notification of updated meters.
|
void |
deletedMeters(IdList meterIds)
the callback for notification of deleted meters.
|
void |
newMeters(IdList meterIds)
The callback for notifications of new meters.
|
down, upvoid newMeters(IdList meterIds)
meterIds - the Ids of the new Meters
mandatory - This method must be implemented. void changedMeters(IdList meterIds)
meterIds - the Ids of the updated Meters
mandatory - This method must be implemented. void deletedMeters(IdList meterIds)
meterIds - the Ids of the deleted Meters
mandatory - This method must be implemented.