Interface RaceConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface RaceConstrainerEnablerReceiver extends OsidReceiver

The race constrainer enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted race constrainer enablers.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedRaceConstrainerEnablers(Id notificationId, IdList raceConstrainerEnablerIds)
    The callback for notification of updated race constrainer enablers.
    void
    deletedRaceConstrainerEnablers(Id notificationId, IdList raceConstrainerEnablerIds)
    The callback for notification of deleted race constrainer enablers.
    void
    newRaceConstrainerEnablers(Id notificationId, IdList raceConstrainerEnablerIds)
    The callback for notifications of new race constrainer enablers.

    Methods inherited from interface OsidReceiver

    down, up
    Modifier and Type
    Method
    Description
    void
    The callback for notifications that the notification bus is not operating.
    void
    up()
    The callback for notifications that the notification bus is operational.
  • Method Details

    • newRaceConstrainerEnablers

      void newRaceConstrainerEnablers(Id notificationId, IdList raceConstrainerEnablerIds)
      The callback for notifications of new race constrainer enablers.
      Parameters:
      notificationId - the notification Id
      raceConstrainerEnablerIds - the Ids of the new RaceConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedRaceConstrainerEnablers

      void changedRaceConstrainerEnablers(Id notificationId, IdList raceConstrainerEnablerIds)
      The callback for notification of updated race constrainer enablers.
      Parameters:
      notificationId - the notification Id
      raceConstrainerEnablerIds - the Ids of the updated RaceConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedRaceConstrainerEnablers

      void deletedRaceConstrainerEnablers(Id notificationId, IdList raceConstrainerEnablerIds)
      The callback for notification of deleted race constrainer enablers.
      Parameters:
      notificationId - the notification Id
      raceConstrainerEnablerIds - the Ids of the deleted RaceConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.