public interface CompositionReceiver extends OsidReceiver
The composition receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Composition
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedCompositions(IdList compositionIds)
The callback for notification of updated compositions.
|
void |
deletedCompositions(IdList compositionIds)
the callback for notification of deleted compositions.
|
void |
newCompositions(IdList compositionIds)
The callback for notifications of new compositions.
|
down, up
void newCompositions(IdList compositionIds)
compositionIds
- the Ids
of the new
Compositions
mandatory
- This method must be implemented. void changedCompositions(IdList compositionIds)
compositionIds
- the Ids
of the updated
Compositions
mandatory
- This method must be implemented. void deletedCompositions(IdList compositionIds)
compositionIds
- the Ids
of the deleted
Compositions
mandatory
- This method must be implemented.