public static class DynamicThreadPoolExecutor.DynamicQueue<E> extends LinkedBlockingQueue<E>
SynchronousQueue which acts as a rendezvous channel. It
 is well suited for handoff designs, in which a tasks is only queued if there
 is an available thread to pick it up.
 
 This queue is correlated with a thread-pool, and allows insertions to the
 queue only if there is a free thread that can poll this task. Otherwise, the
 task is rejected and the decision is left up to one of the
 RejectedExecutionHandler policies:
 DynamicThreadPoolExecutor.ForceQueuePolicy - forces the queue to accept the rejected task. DynamicThreadPoolExecutor.TimedBlockingPolicy - waits for a given time for the task to be
 executed.| Constructor and Description | 
|---|
DynamicThreadPoolExecutor.DynamicQueue()
Creates a DynamicQueue with a capacity of
  
Integer.MAX_VALUE. | 
DynamicThreadPoolExecutor.DynamicQueue(int capacity)
Creates a DynamicQueue with the given (fixed) capacity. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
offer(E o)
Inserts the specified element at the tail of this queue if there is at
 least one available thread to run the current task. 
 | 
void | 
setThreadPoolExecutor(ThreadPoolExecutor executor)
Sets the executor this queue belongs to. 
 | 
clear, contains, drainTo, drainTo, iterator, offer, peek, poll, poll, put, remainingCapacity, remove, size, take, toArray, toArray, toStringadd, addAll, element, removecontainsAll, isEmpty, removeAll, retainAllclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitaddaddAll, containsAll, equals, hashCode, isEmpty, removeAll, retainAllpublic DynamicThreadPoolExecutor.DynamicQueue()
Integer.MAX_VALUE.public DynamicThreadPoolExecutor.DynamicQueue(int capacity)
capacity - the capacity of this queue.public void setThreadPoolExecutor(ThreadPoolExecutor executor)
public boolean offer(E o)
offer in interface BlockingQueue<E>offer in interface Queue<E>offer in class LinkedBlockingQueue<E>o - the element to add.ThreadPoolExecutor.execute(Runnable)Copyright © 2009-2013 jclouds. All Rights Reserved.