public interface PollsReceiver extends OsidReceiver
The polls receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Polls
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedPolls(Id pollsId)
The callback for notification of updated polls.
|
void |
deletedAncestorPolls(Id pollsId,
Id ancestorId)
The callback for notifications of deleted polls ancestors.
|
void |
deletedDescendantPolls(Id pollsId,
Id descendantId)
The callback for notifications of deleted polls descendants.
|
void |
deletedPolls(Id pollsId)
The callback for notification of deleted polls.
|
void |
newAncestorPolls(Id pollsId,
Id ancestorId)
The callback for notifications of new polls ancestors.
|
void |
newDescendantPolls(Id pollsId,
Id descendantId)
The callback for notifications of new polls descendants.
|
void |
newPolls(Id pollsId)
The callback for notifications of new polls.
|
down, up
void newPolls(Id pollsId)
pollsId
- the Id
of the new Polls
mandatory
- This method must be implemented. void newAncestorPolls(Id pollsId, Id ancestorId)
pollsId
- the Id
of the Polls
ancestorId
- the Id
of the new Polls
ancestormandatory
- This method must be implemented. void newDescendantPolls(Id pollsId, Id descendantId)
pollsId
- the Id
of the Polls
descendantId
- the Id
of the new Polls
descendantmandatory
- This method must be implemented. void changedPolls(Id pollsId)
pollsId
- the Id
of the updated Polls
mandatory
- This method must be implemented. void deletedPolls(Id pollsId)
pollsId
- the Id
of the deleted Polls
mandatory
- This method must be implemented. void deletedAncestorPolls(Id pollsId, Id ancestorId)
pollsId
- the Id
of the Polls
ancestorId
- the Id
of the removed Polls
ancestormandatory
- This method must be implemented.