Revision: 3837
http://bigdata.svn.sourceforge.net/bigdata/?rev=3837&view=rev
Author: thompsonbry
Date: 2010-10-22 17:53:21 +0000 (Fri, 22 Oct 2010)
Log Message:
-----------
javadoc edit
Modified Paths:
--------------
branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/util/concurrent/LatchedExecutor.java
Modified: branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/util/concurrent/LatchedExecutor.java
===================================================================
--- branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/util/concurrent/LatchedExecutor.java 2010-10-22 11:59:15 UTC (rev 3836)
+++ branches/QUADS_QUERY_BRANCH/bigdata/src/java/com/bigdata/util/concurrent/LatchedExecutor.java 2010-10-22 17:53:21 UTC (rev 3837)
@@ -53,8 +53,11 @@
/**
* A thread-safe blocking queue of pending tasks.
+ *
+ * @todo The capacity of this queue does not of necessity need to be
+ * unbounded.
*/
- private final BlockingQueue<Runnable> queue = new LinkedBlockingDeque<Runnable>();
+ private final BlockingQueue<Runnable> queue = new LinkedBlockingDeque<Runnable>(/*unbounded*/);
private final int nparallel;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|