Interface EdgeEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface EdgeEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedEdgeEnablers(Id notificationId, IdList edgeEnablerIds)
    The callback for notification of updated edge enablers.
    void
    deletedEdgeEnablers(Id notificationId, IdList edgeEnablerIds)
    The callback for notification of deleted edge enablers.
    void
    newEdgeEnablers(Id notificationId, IdList edgeEnablerIds)
    The callback for notifications of new edge 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

    • newEdgeEnablers

      void newEdgeEnablers(Id notificationId, IdList edgeEnablerIds)
      The callback for notifications of new edge enablers.
      Parameters:
      notificationId - the notification Id
      edgeEnablerIds - the Ids of the new EdgeEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedEdgeEnablers

      void changedEdgeEnablers(Id notificationId, IdList edgeEnablerIds)
      The callback for notification of updated edge enablers.
      Parameters:
      notificationId - the notification Id
      edgeEnablerIds - the Ids of the updated EdgeEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedEdgeEnablers

      void deletedEdgeEnablers(Id notificationId, IdList edgeEnablerIds)
      The callback for notification of deleted edge enablers.
      Parameters:
      notificationId - the notification Id
      edgeEnablerIds - the Ids of the deleted EdgeEnablers
      Compliance:
      mandatory - This method must be implemented.