Class RoundRobinBlockingQueue<T>

java.lang.Object
gov.usgs.earthquake.util.RoundRobinQueue<T>
gov.usgs.earthquake.util.RoundRobinBlockingQueue<T>
Type Parameters:
T - queue item type.
All Implemented Interfaces:
Iterable<T>, Collection<T>, BlockingQueue<T>, Queue<T>
Direct Known Subclasses:
ListenerNotificationQueue, NotificationEventBlockingQueue

public class RoundRobinBlockingQueue<T> extends RoundRobinQueue<T> implements BlockingQueue<T>
Round Robin Blocking Queue. put(Object) and take() are recommended, as other methods internally call these methods.