Interface SignalEnablerReceiver

All Superinterfaces:
OsidReceiver

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.

Like all OsidReceivers, notifications are delivered to SignalEnablerReceiver serially and a receiver method is not invoked again until any previous invocation has returned.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedSignalEnablers(Id notificationId, IdList signalEnablerIds)
    The callback for notification of updated signal enablers.
    void
    deletedSignalEnablers(Id notificationId, IdList signalEnablerIds)
    The callback for notification of deleted signal enablers.
    void
    newSignalEnablers(Id notificationId, IdList signalEnablerIds)
    The callback for notifications of new signal enablers.

    Methods inherited from interface OsidReceiver

    down, up
  • Method Details

    • newSignalEnablers

      void newSignalEnablers(Id notificationId, IdList signalEnablerIds)
      The callback for notifications of new signal enablers.
      Parameters:
      notificationId - the notification Id
      signalEnablerIds - the Ids of the new SignalEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedSignalEnablers

      void changedSignalEnablers(Id notificationId, IdList signalEnablerIds)
      The callback for notification of updated signal enablers.
      Parameters:
      notificationId - the notification Id
      signalEnablerIds - the Ids of the updated SignalEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedSignalEnablers

      void deletedSignalEnablers(Id notificationId, IdList signalEnablerIds)
      The callback for notification of deleted signal enablers.
      Parameters:
      notificationId - the notification Id
      signalEnablerIds - the Id sof the deleted SignalEnablers
      Compliance:
      mandatory - This method must be implemented.