public interface EffortReceiver extends OsidReceiver
The effort receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Effort
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedEfforts(IdList effortIds)
The callback for notification of updated efforts.
|
void |
deletedEfforts(IdList effortIds)
The callback for notification of deleted efforts.
|
void |
newEfforts(IdList effortIds)
The callback for notifications of new efforts.
|
down, upvoid newEfforts(IdList effortIds)
effortIds - the Ids of the new Efforts
mandatory - This method must be implemented. void changedEfforts(IdList effortIds)
effortIds - the Ids of the updated Efforts
mandatory - This method must be implemented. void deletedEfforts(IdList effortIds)
effortIds - the Ids of the deleted Efforts
mandatory - This method must be implemented.