Interface RaceProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface RaceProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedRaceProcessorEnablers(Id notificationId, IdList raceProcessorEnablerIds)
    The callback for notification of updated race processor enablers.
    void
    deletedRaceProcessorEnablers(Id notificationId, IdList raceProcessorEnablerIds)
    The callback for notification of deleted race processor enablers.
    void
    newRaceProcessorEnablers(Id notificationId, IdList raceProcessorEnablerIds)
    The callback for notifications of new race processor 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

    • newRaceProcessorEnablers

      void newRaceProcessorEnablers(Id notificationId, IdList raceProcessorEnablerIds)
      The callback for notifications of new race processor enablers.
      Parameters:
      notificationId - the notification Id
      raceProcessorEnablerIds - the Id of the new RaceProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedRaceProcessorEnablers

      void changedRaceProcessorEnablers(Id notificationId, IdList raceProcessorEnablerIds)
      The callback for notification of updated race processor enablers.
      Parameters:
      notificationId - the notification Id
      raceProcessorEnablerIds - the Id of the updated RaceProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedRaceProcessorEnablers

      void deletedRaceProcessorEnablers(Id notificationId, IdList raceProcessorEnablerIds)
      The callback for notification of deleted race processor enablers.
      Parameters:
      notificationId - the notification Id
      raceProcessorEnablerIds - the Id of the deleted RaceProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.