Interface SignalReceiver
- All Superinterfaces:
OsidReceiver
The signal receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted signals.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedSignals(IdList signalIds) The callback for notification of updated signals.voiddeletedSignals(IdList signalIds) The callback for notification of deleted signals.voidnewSignals(IdList signalIds) The callback for notifications of new signals.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newSignals
The callback for notifications of new signals.- Parameters:
signalIds- theIdsof the newSignal- Compliance:
mandatory- This method must be implemented.
-
changedSignals
The callback for notification of updated signals.- Parameters:
signalIds- theIdsof the updatedSignal- Compliance:
mandatory- This method must be implemented.
-
deletedSignals
The callback for notification of deleted signals.- Parameters:
signalIds- theIdsof the deletedSignal- Compliance:
mandatory- This method must be implemented.
-