public interface BallotReceiver extends OsidReceiver
The candidate receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Ballot
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedBallots(IdList ballotIds)
The callback for notification of updated ballots.
|
void |
deletedBallots(IdList ballotIds)
the callback for notification of deleted ballots.
|
void |
newBallots(IdList ballotIds)
The callback for notifications of new candidates.
|
down, upvoid newBallots(IdList ballotIds)
ballotIds - the Ids of the new Ballots
mandatory - This method must be implemented. void changedBallots(IdList ballotIds)
ballotIds - the Ids of the updated Ballots
mandatory - This method must be implemented. void deletedBallots(IdList ballotIds)
ballotIds - the Ids of the deleted Ballots
mandatory - This method must be implemented.