diff options
| author | eea1 <eea1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-08 22:16:46 +0000 |
|---|---|---|
| committer | eea1 <eea1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-08 22:16:46 +0000 |
| commit | e75e64e6b93800116de5e7da5f16a87006d20b22 (patch) | |
| tree | 44ea3c9fd203fce5d7c12d752fdc75c5cd1b9d01 /java/src/EventHandler.java | |
| parent | 4c8e64c42a2a50576b94bcdcaab3af11ef69106e (diff) | |
| download | ATCD-e75e64e6b93800116de5e7da5f16a87006d20b22.tar.gz | |
*** NOTE:
Changed the semantics of Condition, TimedWait, MessageQueue,
Task, Mutex, Semaphore, and Token to use absolute times for
their timeouts.
Changed the semantics of EventHandler, ServiceObject, and
SvcHandler such that handleTimeout receives a TimeValue
representing when the event occured.
Changed TimerQueue internally to reflect the above changes.
Also made better checks in Token and Mutex so that non-owners
can call release without adverse effects. I plan to try to
do this with Semaphore and RWMutex as well.
Fixed several bugs in Token tryacquire and renew. Added
relativeTimeOfDay methods to TimeValue.
Diffstat (limited to 'java/src/EventHandler.java')
| -rw-r--r-- | java/src/EventHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/EventHandler.java b/java/src/EventHandler.java index 25057a459c8..f02c53684fd 100644 --- a/java/src/EventHandler.java +++ b/java/src/EventHandler.java @@ -43,7 +43,7 @@ public interface EventHandler { /** * Called when timer expires. - *@param tv Time Value for which timer was set + *@param tv Time Value at which the event occured *@param obj An arbitrary object that was passed to the Timer Queue * (Asynchronous Completion Token) */ |
