ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ThreadPoolExecutor.java
Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Mon Feb 9 13:28:48 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PFD
Changes since 1.54: +3 -3 lines
Diff to previous 1.54
Wording fixes and improvements

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Mon Feb 9 00:23:55 2004 UTC (20 years, 3 months ago) by dl
Branch: MAIN
Changes since 1.53: +2 -2 lines
Diff to previous 1.53
Wording improvements and fixes

Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Wed Jan 21 15:20:35 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.52: +31 -4 lines
Diff to previous 1.52
doc improvements; consistent conventions for nested classes

Revision 1.52 - (view) (download) (annotate) - [select for diffs]
Tue Jan 20 20:20:09 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.51: +7 -7 lines
Diff to previous 1.51
Avoid need for synthetic accessors

Revision 1.51 - (view) (download) (annotate) - [select for diffs]
Mon Jan 19 15:49:02 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.50: +1 -1 lines
Diff to previous 1.50
Javadoc fixes

Revision 1.50 - (view) (download) (annotate) - [select for diffs]
Sun Jan 11 23:19:55 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.49: +16 -30 lines
Diff to previous 1.49
formatting; grammar

Revision 1.49 - (view) (download) (annotate) - [select for diffs]
Sun Jan 4 00:56:48 2004 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.48: +0 -4 lines
Diff to previous 1.48
Code walkthrough misc

Revision 1.48 - (view) (download) (annotate) - [select for diffs]
Mon Dec 29 19:05:22 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.47: +4 -4 lines
Diff to previous 1.47
spellcheck

Revision 1.47 - (view) (download) (annotate) - [select for diffs]
Sat Dec 27 20:40:32 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.46: +2 -2 lines
Diff to previous 1.46
Headers reference Creative Commons

Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Sat Dec 27 17:19:03 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.45: +1 -1 lines
Diff to previous 1.45
Adapt to AbstractQueuedSynchronizer

Revision 1.45 - (view) (download) (annotate) - [select for diffs]
Tue Dec 23 19:38:09 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.44: +16 -2 lines
Diff to previous 1.44
cache finals across volatiles; avoid readResolve; doc improvments; timed invokeAll interleaves

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Mon Dec 22 16:25:20 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.43: +12 -3 lines
Diff to previous 1.43
Simplify FutureTask and AbstractExecutorService internals; improve docs

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Fri Dec 19 14:42:25 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.42: +96 -10 lines
Diff to previous 1.42
Documentation improvements

Revision 1.42 - (view) (download) (annotate) - [select for diffs]
Wed Dec 17 17:00:24 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.41: +7 -0 lines
Diff to previous 1.41
Export delegation wrappers; fix/add documentation

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Wed Dec 10 14:57:13 2003 UTC (20 years, 5 months ago) by tim
Branch: MAIN
Changes since 1.40: +7 -2 lines
Diff to previous 1.40
Don't allocate an empty Runnable[] each time toArray() is called.

Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Wed Dec 10 14:52:01 2003 UTC (20 years, 5 months ago) by tim
Branch: MAIN
Changes since 1.39: +2 -2 lines
Diff to previous 1.39
Improper cast of toArray() to Runnable[], now uses toArray(Runnable[]).

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Wed Dec 10 02:24:00 2003 UTC (20 years, 5 months ago) by tim
Branch: MAIN
Changes since 1.38: +14 -14 lines
Diff to previous 1.38
Raw List returned by shutdownNow is really List<Runnable>.

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Wed Dec 10 01:51:11 2003 UTC (20 years, 5 months ago) by tim
Branch: MAIN
CVS Tags: JSR166_DEC9_POST_ES_SUBMIT
Changes since 1.37: +8 -8 lines
Diff to previous 1.37
Move and rename static Executors.execute/invoke to ExecutorService.submit/invoke,
providing implementations in AbstractExecutorService (which TPE extends).

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Thu Dec 4 20:54:29 2003 UTC (20 years, 6 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_DEC9_PRE_ES_SUBMIT
Changes since 1.36: +3 -3 lines
Diff to previous 1.36
Revised tests for revised Future classes

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Wed Dec 3 21:07:44 2003 UTC (20 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.35: +4 -4 lines
Diff to previous 1.35
Add ConcurrentMap.replace; fix other typos

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Wed Nov 12 01:04:25 2003 UTC (20 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34
fixed typos; avoided some casts

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Sat Nov 1 18:36:04 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_NOV3_FREEZE
Changes since 1.33: +17 -67 lines
Diff to previous 1.33
Reworked PriviligedFutureTask; added Semaphore.reducePermits; moved factories

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Sat Oct 25 13:15:18 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.32: +68 -19 lines
Diff to previous 1.32
added DefaultThreadPoolFactory as static protected class

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Sat Oct 11 15:37:31 2003 UTC (20 years, 7 months ago) by dl
Branch: MAIN
Changes since 1.31: +1 -1 lines
Diff to previous 1.31
Redeclare some Conditions as ReentrantLock.ConditionObjects

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Sun Oct 5 23:54:57 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.30: +3 -0 lines
Diff to previous 1.30
null-check setRejectedExecutionHandler

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Sun Oct 5 23:00:18 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.29: +3 -0 lines
Diff to previous 1.29
added drainTo; clarified various exception specs

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Mon Sep 29 23:21:38 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.28: +1 -1 lines
Diff to previous 1.28
fixed typos

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Sat Sep 27 12:22:40 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.27: +2 -1 lines
Diff to previous 1.27
Use "unit" instead of "granularity"; add Executors link to first sentence of TPE

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Fri Sep 26 11:37:11 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.26: +3 -3 lines
Diff to previous 1.26
Spellcheck

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Thu Sep 25 11:01:22 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.25: +3 -0 lines
Diff to previous 1.25
Consistently throw NPE for execute(null)

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Sun Sep 14 14:25:22 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.24: +36 -9 lines
Diff to previous 1.24
Fix termination when never started

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Sat Sep 13 18:51:11 2003 UTC (20 years, 8 months ago) by dl
Branch: MAIN
Changes since 1.23: +44 -23 lines
Diff to previous 1.23
Proofreading pass -- many minor adjustments

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Wed Sep 3 14:55:05 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.22: +7 -7 lines
Diff to previous 1.22
Grammar fix.

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Wed Sep 3 14:10:05 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.21: +18 -18 lines
Diff to previous 1.21
Minor rephrasings in javadoc

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Wed Sep 3 13:15:14 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.20: +175 -95 lines
Diff to previous 1.20
Rewrite sections of class javadoc; eliminate WaitPolicy

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Mon Sep 1 14:27:11 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.19: +10 -11 lines
Diff to previous 1.19
Fix html

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Sun Aug 31 13:33:14 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.18: +41 -58 lines
Diff to previous 1.18
Removed non-standard tags and misc javadoc cleanup

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Mon Aug 25 01:58:50 2003 UTC (20 years, 9 months ago) by dholmes
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17
Fixed @Executors typo

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Sun Aug 24 23:32:25 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.16: +83 -74 lines
Diff to previous 1.16
Kill ScheduledExecutor Date methods; Documentation clarifications

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Thu Aug 14 15:34:04 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.15: +162 -69 lines
Diff to previous 1.15
New shutdown policies for Scheduled executor; refactored to avoid more messiness

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Sat Aug 9 19:55:30 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.14: +12 -3 lines
Diff to previous 1.14
Add finalize

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Fri Aug 8 20:05:07 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.13: +20 -39 lines
Diff to previous 1.13
Scrunched catch, finally, else clauses.

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Fri Aug 8 17:48:45 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.12: +14 -14 lines
Diff to previous 1.12
Semi-lazily prestart core threads in SE

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Thu Aug 7 16:00:28 2003 UTC (20 years, 10 months ago) by dl
Branch: MAIN
Changes since 1.11: +14 -5 lines
Diff to previous 1.11
ScheduledExecutor must prestart core threads

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Wed Aug 6 19:22:36 2003 UTC (20 years, 10 months ago) by tim
Branch: MAIN
CVS Tags: JSR166_CR1
Changes since 1.10: +12 -2 lines
Diff to previous 1.10
Added missing @see tags

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Thu Jul 31 20:32:00 2003 UTC (20 years, 10 months ago) by tim
Branch: MAIN
Changes since 1.9: +64 -64 lines
Diff to previous 1.9
More javadoc link fixes

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Tue Jul 8 00:46:35 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_2
Changes since 1.8: +2 -2 lines
Diff to previous 1.8
Locks in subpackage; fairness params added

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Tue Jun 24 14:34:49 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.7: +35 -11 lines
Diff to previous 1.7
Added missing javadoc tags; minor reformatting

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Wed Jun 11 13:17:21 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.6: +23 -1 lines
Diff to previous 1.6
Removed automatic queue removal on cancel; Added TPE purge; Fixed RL typo

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Fri Jun 6 18:42:18 2003 UTC (21 years ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_1
Changes since 1.5: +15 -14 lines
Diff to previous 1.5
Added to emulation
Fixed some javadoc format errors

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Tue Jun 3 16:44:36 2003 UTC (21 years ago) by dl
Branch: MAIN
Changes since 1.4: +8 -37 lines
Diff to previous 1.4
New ScheduledExecutor; CancellableTask

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Thu May 29 13:21:28 2003 UTC (21 years ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRERELEASE_0_1
Changes since 1.3: +46 -1 lines
Diff to previous 1.3
Cancellation support in TPE

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Wed May 28 23:00:40 2003 UTC (21 years ago) by dl
Branch: MAIN
Changes since 1.2: +3 -3 lines
Diff to previous 1.2
Simple ScheduledExecutor

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Tue May 27 18:14:40 2003 UTC (21 years ago) by dl
Branch: MAIN
Changes since 1.1: +835 -211 lines
Diff to previous 1.1
re-check-in initial implementations

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Wed May 14 21:30:48 2003 UTC (21 years ago) by tim
Branch: MAIN
Moved main source rooted at . to ./src/main
Moved test source rooted at ./etc/testcases to ./src/test

Convenience Links

Links to HEAD: (view) (download) (annotate) Links to JSR166_PFD: (view) (download) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a