public interface SignalEnablerReceiver extends OsidReceiver
The signal enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted signal enablers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedSignalEnablers(IdList signalEnablerIds)
The callback for notification of updated signal enablers.
|
void |
deletedSignalEnablers(IdList signalEnablerIds)
The callback for notification of deleted signal enablers.
|
void |
newSignalEnablers(IdList signalEnablerIds)
The callback for notifications of new signal enablers.
|
down, upvoid newSignalEnablers(IdList signalEnablerIds)
signalEnablerIds - the Ids of the new
SignalEnablers mandatory - This method must be implemented. void changedSignalEnablers(IdList signalEnablerIds)
signalEnablerIds - the Ids of the updated
SignalEnablers mandatory - This method must be implemented. void deletedSignalEnablers(IdList signalEnablerIds)
signalEnablerIds - the Id sof the deleted
SignalEnablers mandatory - This method must be implemented.