public interface ParticipantReceiver extends OsidReceiver
The participant receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted participants.
| Modifier and Type | Method and Description |
|---|---|
void |
changedParticipants(IdList participantIds)
The callback for notifications of updated participants.
|
void |
deletedParticipants(IdList participantIds)
the callback for notification of deleted participants.
|
void |
newParticipants(IdList participantIds)
The callback for notifications of new participants.
|
down, upvoid newParticipants(IdList participantIds)
participantIds - the Ids of the new participantsmandatory - This method must be implemented. void changedParticipants(IdList participantIds)
participantIds - the Ids of the updated
participantsmandatory - This method must be implemented. void deletedParticipants(IdList participantIds)
participantIds - the Ids of the deleted
participantsmandatory - This method must be implemented.