Interface EffortReceiver

All Superinterfaces:
OsidReceiver

public interface EffortReceiver extends OsidReceiver

The effort receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted Effort objects.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedEfforts(Id notificationId, IdList effortIds)
    The callback for notification of updated efforts.
    void
    deletedEfforts(Id notificationId, IdList effortIds)
    The callback for notification of deleted efforts.
    void
    newEfforts(Id notificationId, IdList effortIds)
    The callback for notifications of new efforts.

    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

    • newEfforts

      void newEfforts(Id notificationId, IdList effortIds)
      The callback for notifications of new efforts.
      Parameters:
      notificationId - the notification Id
      effortIds - the Ids of the new Efforts
      Compliance:
      mandatory - This method must be implemented.
    • changedEfforts

      void changedEfforts(Id notificationId, IdList effortIds)
      The callback for notification of updated efforts.
      Parameters:
      notificationId - the notification Id
      effortIds - the Ids of the updated Efforts
      Compliance:
      mandatory - This method must be implemented.
    • deletedEfforts

      void deletedEfforts(Id notificationId, IdList effortIds)
      The callback for notification of deleted efforts.
      Parameters:
      notificationId - the notification Id
      effortIds - the Ids of the deleted Efforts
      Compliance:
      mandatory - This method must be implemented.