ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Executors.java
Revision 1.50 - (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.49: +3 -2 lines
Diff to previous 1.49
Wording fixes and improvements

Revision 1.49 - (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.48: +4 -4 lines
Diff to previous 1.48
Wording improvements and fixes

Revision 1.48 - (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.47: +11 -11 lines
Diff to previous 1.47
doc improvements; consistent conventions for nested classes

Revision 1.47 - (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.46: +2 -3 lines
Diff to previous 1.46
formatting; grammar

Revision 1.46 - (view) (download) (annotate) - [select for diffs]
Fri Jan 9 17:15:48 2004 UTC (20 years, 4 months ago) by dl
Branch: MAIN
Changes since 1.45: +1 -1 lines
Diff to previous 1.45
Javadoc improvements

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

Revision 1.44 - (view) (download) (annotate) - [select for diffs]
Thu Dec 25 19:57:45 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.43: +9 -9 lines
Diff to previous 1.43
Declare inner classes as private

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Thu Dec 25 15:42:12 2003 UTC (20 years, 5 months ago) by tim
Branch: MAIN
Changes since 1.42: +21 -21 lines
Diff to previous 1.42
minor Executors doc tweaks

Revision 1.42 - (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.41: +24 -0 lines
Diff to previous 1.41
Simplify FutureTask and AbstractExecutorService internals; improve docs

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Sun Dec 21 12:24:48 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.40: +22 -3 lines
Diff to previous 1.40
Documentation improvments; support two-arg submit

Revision 1.40 - (view) (download) (annotate) - [select for diffs]
Sat Dec 20 15:48:27 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.39: +53 -17 lines
Diff to previous 1.39
rename ScheduledExecutorService factory methods; minor doc touch-ups

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Sat Dec 20 14:00:05 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.38: +117 -5 lines
Diff to previous 1.38
Replace PrivilegedFutureTask with Executors.privilegedCallable

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Fri Dec 19 20:38:31 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.37: +84 -30 lines
Diff to previous 1.37
Define and use Executors.callable instead of submit/invoke variants

Revision 1.37 - (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.36: +7 -4 lines
Diff to previous 1.36
Documentation improvements

Revision 1.36 - (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.35: +146 -10 lines
Diff to previous 1.35
Export delegation wrappers; fix/add documentation

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Thu Dec 11 19:08:03 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.34: +24 -76 lines
Diff to previous 1.34
Remove internal delegation wrappers

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Wed Dec 10 13:00:13 2003 UTC (20 years, 5 months ago) by dl
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33
Documentation updates

Revision 1.33 - (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.32: +1 -1 lines
Diff to previous 1.32
Raw List returned by shutdownNow is really List<Runnable>.

Revision 1.32 - (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.31: +2 -132 lines
Diff to previous 1.31
Move and rename static Executors.execute/invoke to ExecutorService.submit/invoke,
providing implementations in AbstractExecutorService (which TPE extends).

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Tue Dec 9 18:38:28 2003 UTC (20 years, 5 months ago) by tim
Branch: MAIN
CVS Tags: JSR166_DEC9_PRE_ES_SUBMIT
Changes since 1.30: +0 -18 lines
Diff to previous 1.30
Oops, forgot to remove <V> Future<V> execute(Executor, Runnable, V),
which we don't need now that we have Future<?> execute(Executor, Runnable).

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Mon Dec 8 19:42:26 2003 UTC (20 years, 5 months ago) by tim
Branch: MAIN
Changes since 1.29: +7 -7 lines
Diff to previous 1.29
Use XXXFuture<?> instead of XXXFuture<Boolean> when returning futures
without interesting return values

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Sun Dec 7 15:00:46 2003 UTC (20 years, 6 months ago) by tim
Branch: MAIN
Changes since 1.28: +3 -6 lines
Diff to previous 1.28
ScheduledExecutorService for Executors factory method return type

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Sun Dec 7 14:57:46 2003 UTC (20 years, 6 months ago) by tim
Branch: MAIN
Changes since 1.27: +7 -6 lines
Diff to previous 1.27
ScheduledExecutorService for Executors factory method return type

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Sat Dec 6 04:31:03 2003 UTC (20 years, 6 months ago) by tim
Branch: MAIN
Changes since 1.26: +8 -48 lines
Diff to previous 1.26
Removed one of the newScheduledThreadPool factory methods

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Fri Dec 5 17:56:24 2003 UTC (20 years, 6 months ago) by tim
Branch: MAIN
Changes since 1.25: +111 -7 lines
Diff to previous 1.25
added newScheduledThreadPool factory methods and related support class

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

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Mon Nov 10 17:31:23 2003 UTC (20 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.23: +3 -2 lines
Diff to previous 1.23
Wording and typo cleanup pass

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Fri Nov 7 12:19:35 2003 UTC (20 years, 6 months ago) by dl
Branch: MAIN
Changes since 1.22: +3 -6 lines
Diff to previous 1.22
Clarified PFT documentation

Revision 1.22 - (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.21: +115 -3 lines
Diff to previous 1.21
Reworked PriviligedFutureTask; added Semaphore.reducePermits; moved factories

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Tue Oct 28 13:25:01 2003 UTC (20 years, 7 months ago) by tim
Branch: MAIN
Changes since 1.20: +2 -36 lines
Diff to previous 1.20
Remove explicit CCL/ACC constructors and class methods

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Sat Oct 25 04:23:25 2003 UTC (20 years, 7 months ago) by tim
Branch: MAIN
Changes since 1.19: +96 -0 lines
Diff to previous 1.19
Add PrivilegedFutureTask along with related methods in Executors.

Revision 1.19 - (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.18: +4 -0 lines
Diff to previous 1.18
Proofreading pass -- many minor adjustments

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Mon Sep 1 14:00:25 2003 UTC (20 years, 9 months ago) by dl
Branch: MAIN
Changes since 1.17: +1 -1 lines
Diff to previous 1.17
Fix javadoc typos

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

Revision 1.16 - (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.15: +11 -5 lines
Diff to previous 1.15
Kill ScheduledExecutor Date methods; Documentation clarifications

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Tue Aug 19 15:04:57 2003 UTC (20 years, 9 months ago) by tim
Branch: MAIN
Changes since 1.14: +22 -3 lines
Diff to previous 1.14
Future extends Cancellable.
class SE.DelayedTask -> interface ScheduledCancellable
class SE.DelayedFutureTask -> interface ScheduledFuture
Add primitive SE test.
Related internals changes.

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Fri Aug 1 22:40:05 2003 UTC (20 years, 10 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_CR1
Changes since 1.13: +5 -5 lines
Diff to previous 1.13
Added remove to ConcurrentMap. Fixed constuctor call in Executors.

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Thu Jul 31 19:49:42 2003 UTC (20 years, 10 months ago) by tim
Branch: MAIN
Changes since 1.12: +3 -3 lines
Diff to previous 1.12
Fix broken doc links

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Tue Jun 24 14:34:48 2003 UTC (20 years, 11 months ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_2
Changes since 1.11: +8 -5 lines
Diff to previous 1.11
Added missing javadoc tags; minor reformatting

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Wed Jun 18 10:18:36 2003 UTC (20 years, 11 months ago) by jozart
Branch: MAIN
Changes since 1.10: +3 -3 lines
Diff to previous 1.10
Changed modifier order for DelegatedExecutorService to private static class

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

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Sat Jun 7 16:18:29 2003 UTC (21 years ago) by jozart
Branch: MAIN
CVS Tags: JSR166_PRELIMINARY_TEST_RELEASE_1
Changes since 1.8: +9 -6 lines
Diff to previous 1.8
Changed ExecutionException to RejectedExecutionException in invoke methods.

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Fri Jun 6 18:42:17 2003 UTC (21 years ago) by dl
Branch: MAIN
Changes since 1.7: +1 -8 lines
Diff to previous 1.7
Added to emulation
Fixed some javadoc format errors

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Wed Jun 4 15:31:45 2003 UTC (21 years ago) by tim
Branch: MAIN
Changes since 1.6: +6 -6 lines
Diff to previous 1.6
Fixed doc comments to refer to ExecutionException
rather than CannotExecuteException.

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Wed Jun 4 15:28:04 2003 UTC (21 years ago) by tim
Branch: MAIN
Changes since 1.5: +39 -7 lines
Diff to previous 1.5
Tasks executed on TPEs automatically removed before cancellation attempt.

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Wed Jun 4 11:34:19 2003 UTC (21 years ago) by dl
Branch: MAIN
Changes since 1.4: +4 -5 lines
Diff to previous 1.4
Minor documentation updates
Remove remove(task) from ExecutorService, Add removablity to ScheduledExecutor tasks, Revert Executors.execute to return FutureTask

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

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Thu May 29 13:49:24 2003 UTC (21 years ago) by dl
Branch: MAIN
CVS Tags: JSR166_PRERELEASE_0_1
Changes since 1.2: +8 -8 lines
Diff to previous 1.2
Please the new generics compiler

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: +106 -62 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:46 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