public interface VoteReceiver extends OsidReceiver
The vote receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Votes.
| Modifier and Type | Method and Description |
|---|---|
void |
changedVotes(IdList voteIds)
The callback for notification of updated votes.
|
void |
deletedVotes(IdList voteIds)
The callback for notification of deleted votes.
|
void |
newVotes(IdList voteIds)
The callback for notifications of new votes.
|
down, upvoid newVotes(IdList voteIds)
voteIds - the Ids of the new Votes mandatory - This method must be implemented. void changedVotes(IdList voteIds)
voteIds - the Ids of the updated Votes
mandatory - This method must be implemented. void deletedVotes(IdList voteIds)
voteIds - the Ids of the deleted Votes
mandatory - This method must be implemented.