Interface QueueUsersListener
public interface QueueUsersListener
-
Method Summary
Modifier and TypeMethodDescriptionvoidaverageWaitTimeUpdated(WorkgroupQueue queue, int averageWaitTime) The average wait time of the queue was updated.voidoldestEntryUpdated(WorkgroupQueue queue, Date oldestEntry) The date of oldest entry waiting in the queue was updated.voidstatusUpdated(WorkgroupQueue queue, WorkgroupQueue.Status status) The status of the queue was updated.voidusersUpdated(WorkgroupQueue queue, Set<QueueUser> users) The list of users waiting in the queue was updated.
-
Method Details
-
statusUpdated
The status of the queue was updated.- Parameters:
queue- the workgroup queue.status- the status of queue.
-
averageWaitTimeUpdated
The average wait time of the queue was updated.- Parameters:
queue- the workgroup queue.averageWaitTime- the average wait time of the queue.
-
oldestEntryUpdated
The date of oldest entry waiting in the queue was updated.- Parameters:
queue- the workgroup queue.oldestEntry- the date of the oldest entry waiting in the queue.
-
usersUpdated
The list of users waiting in the queue was updated.- Parameters:
queue- the workgroup queue.users- the list of users waiting in the queue.
-