Interface OffsetEventEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface OffsetEventEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds)
    The callback for notification of updated offset event enablers.
    void
    deletedOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds)
    The callback for notification of deleted offset event enablers.
    void
    newOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds)
    The callback for notifications of new offset event 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

    • newOffsetEventEnablers

      void newOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds)
      The callback for notifications of new offset event enablers.
      Parameters:
      notificationId - the notification Id
      offsetEventEnablerIds - the Id of the new OffsetEventEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedOffsetEventEnablers

      void changedOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds)
      The callback for notification of updated offset event enablers.
      Parameters:
      notificationId - the notification Id
      offsetEventEnablerIds - the Id of the updated OffsetEventEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedOffsetEventEnablers

      void deletedOffsetEventEnablers(Id notificationId, IdList offsetEventEnablerIds)
      The callback for notification of deleted offset event enablers.
      Parameters:
      notificationId - the notification Id
      offsetEventEnablerIds - the Id of the deleted OffsetEventEnablers
      Compliance:
      mandatory - This method must be implemented.