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.13 by tim, Thu Jul 31 19:49:42 2003 UTC vs.
Revision 1.14 by dl, Fri Aug 1 22:40:05 2003 UTC

# Line 69 | Line 69 | public class Executors {
69              (new ThreadPoolExecutor(nThreads, nThreads,
70                                      0L, TimeUnit.MILLISECONDS,
71                                      new LinkedBlockingQueue<Runnable>(),
72 <                                    threadFactory, null));
72 >                                    threadFactory));
73      }
74  
75      /**
# Line 104 | Line 104 | public class Executors {
104              (new ThreadPoolExecutor(1, 1,
105                                      0L, TimeUnit.MILLISECONDS,
106                                      new LinkedBlockingQueue<Runnable>(),
107 <                                    threadFactory, null));
107 >                                    threadFactory));
108      }
109  
110      /**
# Line 141 | Line 141 | public class Executors {
141              (new ThreadPoolExecutor(0, Integer.MAX_VALUE,
142                                      60, TimeUnit.SECONDS,
143                                      new SynchronousQueue<Runnable>(),
144 <                                    threadFactory, null));
144 >                                    threadFactory));
145      }
146  
147      /**

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines