From e75e64e6b93800116de5e7da5f16a87006d20b22 Mon Sep 17 00:00:00 2001 From: eea1 Date: Thu, 8 Jul 1999 22:16:46 +0000 Subject: *** 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. --- java/src/EventHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'java/src/EventHandler.java') 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) */ -- cgit v1.2.1