ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ExecutorCompletionService.java
(Generate patch)

Comparing jsr166/src/main/java/util/concurrent/ExecutorCompletionService.java (file contents):
Revision 1.9 by dl, Wed Jan 21 15:20:35 2004 UTC vs.
Revision 1.10 by dl, Mon Feb 9 13:28:47 2004 UTC

# Line 91 | Line 91 | public class ExecutorCompletionService<V
91       * executor for base task execution and a
92       * {@link LinkedBlockingQueue} as a completion queue.
93       * @param executor the executor to use
94 <     8 @throws NullPointerException if executor is <tt>null</tt>
94 >     * @throws NullPointerException if executor is <tt>null</tt>
95       */
96      public ExecutorCompletionService(Executor executor) {
97          if (executor == null)
# Line 107 | Line 107 | public class ExecutorCompletionService<V
107       * @param executor the executor to use
108       * @param completionQueue the queue to use as the completion queue
109       * normally one dedicated for use by this service
110 <     8 @throws NullPointerException if executor or completionQueue are <tt>null</tt>
110 >     * @throws NullPointerException if executor or completionQueue are <tt>null</tt>
111       */
112      public ExecutorCompletionService(Executor executor,
113                                       BlockingQueue<Future<V>> completionQueue) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines