User: vt
Date: 00/11/01 23:57:51
Modified: src/java/gnu/j4/util TimerCallback.java
Log:
Checkpoint on the way to implement a shutdown(Throwable failureCause) call,
as opposed to no-argument shutdown(). Point is, I want to know why the
execute() died, if it did.
Revision Changes Path
1.5 +2 -2 J4/src/java/gnu/j4/util/TimerCallback.java
CVSWEB Options: -------------------
CVSWeb: Annotate this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/java/gnu/j4/util/TimerCallback.java?annotate=1.5&cvsroot=jukebox4
CVSWeb: View this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/java/gnu/j4/util/TimerCallback.java?rev=1.5&content-type=text/x-cvsweb-markup&cvsroot=jukebox4
CVSWeb: Diff to previous version: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/java/gnu/j4/util/TimerCallback.java.diff?r1=1.5&r2=1.4&cvsroot=jukebox4
-----------------------------------
Index: TimerCallback.java
===================================================================
RCS file: /usr/local/cvs/J4/src/java/gnu/j4/util/TimerCallback.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- TimerCallback.java 2000/03/03 04:20:23 1.4
+++ TimerCallback.java 2000/11/02 06:57:50 1.5
@@ -22,7 +22,7 @@
* expect, so don't expect. Probably the best way to do that will be the timed out
* <code>EventSemaphore</code>
* @author Copyright © <a href="mailto:vt...@fr...">Vadim Tkachenko</a> 1995-1998
- * @version $Id: TimerCallback.java,v 1.4 2000/03/03 04:20:23 vt Exp $
+ * @version $Id: TimerCallback.java,v 1.5 2000/11/02 06:57:50 vt Exp $
* @see TimerClient
*/
public class TimerCallback extends ActiveService {
@@ -106,7 +106,7 @@
* @exception InterruptedException if this thread is interrupted by
* another thread.
*/
- protected void shutdown() throws InterruptedException {
+ protected void shutdown(Throwable failureCause) throws InterruptedException {
}
/**
|