public interface SignalReceiver extends OsidReceiver
The signal receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted signals.
| Modifier and Type | Method and Description |
|---|---|
void |
changedSignals(IdList signalIds)
The callback for notification of updated signals.
|
void |
deletedSignals(IdList signalIds)
The callback for notification of deleted signals.
|
void |
newSignals(IdList signalIds)
The callback for notifications of new signals.
|
down, upvoid newSignals(IdList signalIds)
signalIds - the Ids of the new Signal
mandatory - This method must be implemented. void changedSignals(IdList signalIds)
signalIds - the Ids of the updated Signal
mandatory - This method must be implemented. void deletedSignals(IdList signalIds)
signalIds - the Ids of the deleted Signal
mandatory - This method must be implemented.