public interface QueueConstrainerReceiver extends OsidReceiver
The queue constrainer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted queue constrainers.
Modifier and Type | Method and Description |
---|---|
void |
changedQueueConstrainer(Id queueConstrainerId)
The callback for notification of updated queue constrainers.
|
void |
deletedQueueConstrainer(Id queueConstrainerId)
The callback for notification of deleted queue constrainers.
|
void |
newQueueConstrainer(Id queueConstrainerId)
The callback for notifications of new queue constrainers.
|
down, up
void newQueueConstrainer(Id queueConstrainerId)
queueConstrainerId
- the Id
of the new
QueueConstrainer
mandatory
- This method must be implemented. void changedQueueConstrainer(Id queueConstrainerId)
queueConstrainerId
- the Id
of the updated
QueueConstrainer
mandatory
- This method must be implemented. void deletedQueueConstrainer(Id queueConstrainerId)
queueConstrainerId
- the Id
of the deleted
QueueConstrainer
mandatory
- This method must be implemented.