ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/Executors.java
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, 9 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 (21 years 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, 1 month 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_NOV3_FREEZE: (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