diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-10-05 10:59:05 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-10-05 10:59:05 +0000 |
commit | 0f82e043ed49bac37ee0e71db33a5160fd991970 (patch) | |
tree | ed69db4ac4a22c35aafbfd18edc903e1dafbf15d /java/src/EventHandler.java | |
parent | 20ff751b21b30fb4154bbcb5b4803d0d39240c32 (diff) | |
download | ATCD-TAO-1_2.tar.gz |
This commit was manufactured by cvs2svn to create tag 'TAO-1_2'.TAO-1_2
Diffstat (limited to 'java/src/EventHandler.java')
-rw-r--r-- | java/src/EventHandler.java | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/java/src/EventHandler.java b/java/src/EventHandler.java deleted file mode 100644 index 30f5bb1dba4..00000000000 --- a/java/src/EventHandler.java +++ /dev/null @@ -1,53 +0,0 @@ -/************************************************* - * - * = PACKAGE - * JACE.Reactor - * - * = FILENAME - * EventHandler.java - * - *@author Prashant Jain - * - *************************************************/ -package JACE.Reactor; - -import JACE.ASX.TimeValue; - -/** - * <hr> - * <h2>SYNOPSIS</h2> - *<blockquote> - * Provides an abstract interface for handling timer events. - *</blockquote> - * - * <h2>DESCRIPTION</h2> - *<blockquote> - * Classes implementing this interface handle a timer's - * expiration. - *</blockquote> - * - * <h2>NOTES</h2> - *<blockquote> - * Users of C++ ACE will notice that this defines a substantially - * smaller interface than the C++ counterpart. Signal events are - * absent due to the complete absence of this feature from Java itself. - * Moreover, at this point - * there is still some question regarding whether or not the I/O - * portion will make any sense or fit into the Java model for I/O. - *</blockquote> - * - *@see TimerQueue - *@see JACE.Reactor - */ -public interface EventHandler -{ - /** - * Called when timer expires. - *@param tv Time Value at which the event occured - *@param obj An arbitrary object that was passed to the Timer Queue - * (Asynchronous Completion Token) - */ - public int handleTimeout (TimeValue tv, Object obj); -} - -// Note that more methods will be added as needed |