Interface BallotConstrainerReceiver
- All Superinterfaces:
OsidReceiver
The ballot constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted ballot constrainers.
Like all OsidReceivers, notifications are delivered to
BallotConstrainerReceiver serially and a receiver method is not invoked
again until any previous invocation has returned.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedBallotConstrainers(Id notificationId, IdList ballotConstrainerIds) The callback for notification of updated ballot constrainers.voiddeletedBallotConstrainers(Id notificationId, IdList ballotConstrainerIds) The callback for notification of deleted ballot constrainers.voidnewBallotConstrainers(Id notificationId, IdList ballotConstrainerIds) The callback for notifications of new ballot constrainers.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newBallotConstrainers
The callback for notifications of new ballot constrainers.- Parameters:
notificationId- the notification IdballotConstrainerIds- theIdsof the newBallotConstrainers- Compliance:
mandatory- This method must be implemented.
-
changedBallotConstrainers
The callback for notification of updated ballot constrainers.- Parameters:
notificationId- the notification IdballotConstrainerIds- theIdsof the updatedBallotConstrainers- Compliance:
mandatory- This method must be implemented.
-
deletedBallotConstrainers
The callback for notification of deleted ballot constrainers.- Parameters:
notificationId- the notification IdballotConstrainerIds- theIdsof the deletedBallotConstrainers- Compliance:
mandatory- This method must be implemented.
-