Interface MeterReceiver
- All Superinterfaces:
OsidReceiver
The meter receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Meter objects.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedMeters(IdList meterIds) The callback for notification of updated meters.voiddeletedMeters(IdList meterIds) the callback for notification of deleted meters.voidThe callback for notifications of new meters.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newMeters
The callback for notifications of new meters.- Parameters:
meterIds- theIdsof the newMeters- Compliance:
mandatory- This method must be implemented.
-
changedMeters
The callback for notification of updated meters.- Parameters:
meterIds- theIdsof the updatedMeters- Compliance:
mandatory- This method must be implemented.
-
deletedMeters
the callback for notification of deleted meters.- Parameters:
meterIds- theIdsof the deletedMeters- Compliance:
mandatory- This method must be implemented.
-