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

Comparing jsr166/src/main/java/util/concurrent/Executors.java (file contents):
Revision 1.58 by jsr166, Sun May 29 16:33:55 2005 UTC vs.
Revision 1.59 by jsr166, Wed Jun 8 01:53:14 2005 UTC

# Line 5 | Line 5
5   */
6  
7   package java.util.concurrent;
8 + import java.util.concurrent.*; // for javadoc
9   import java.util.*;
10   import java.util.concurrent.atomic.AtomicInteger;
11   import java.security.AccessControlContext;
# Line 40 | Line 41 | import java.security.AccessControlExcept
41   public class Executors {
42  
43      /**
44 <     * Creates a thread pool that reuses a fixed set of threads
44 >     * Creates a thread pool that reuses a fixed number of threads
45       * operating off a shared unbounded queue. At any point, at most
46       * <tt>nThreads</tt> threads will be active processing tasks. If
47       * additional tasks are submitted when all threads are active,
# Line 59 | Line 60 | public class Executors {
60      }
61  
62      /**
63 <     * Creates a thread pool that reuses a fixed set of threads
63 >     * Creates a thread pool that reuses a fixed number of threads
64       * operating off a shared unbounded queue, using the provided
65       * ThreadFactory to create new threads when needed.  At any point,
66       * at most <tt>nThreads</tt> threads will be active processing

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines