[Jukebox-cvs] CVS update: J4/src/java/gnu/j4/framework/server TransactionAdapterImpl.java
Brought to you by:
vtt
From: CVS B. <vt...@fr...> - 2000-11-02 08:38:23
|
User: vt Date: 00/11/01 23:57:44 Modified: src/java/gnu/j4/framework/server TransactionAdapterImpl.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.7 +2 -2 J4/src/java/gnu/j4/framework/server/TransactionAdapterImpl.java CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/java/gnu/j4/framework/server/TransactionAdapterImpl.java?annotate=1.7&cvsroot=jukebox4 CVSWeb: View this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/src/java/gnu/j4/framework/server/TransactionAdapterImpl.java?rev=1.7&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/framework/server/TransactionAdapterImpl.java.diff?r1=1.7&r2=1.6&cvsroot=jukebox4 ----------------------------------- Index: TransactionAdapterImpl.java =================================================================== RCS file: /usr/local/cvs/J4/src/java/gnu/j4/framework/server/TransactionAdapterImpl.java,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- TransactionAdapterImpl.java 2000/10/25 03:44:22 1.6 +++ TransactionAdapterImpl.java 2000/11/02 06:57:44 1.7 @@ -54,7 +54,7 @@ * never get a chance to initialize the object stream. * * @author Copyright © <a href="mailto:vt...@fr...">Vadim Tkachenko</a> 1995-1998 - * @version $Id: TransactionAdapterImpl.java,v 1.6 2000/10/25 03:44:22 vt Exp $ + * @version $Id: TransactionAdapterImpl.java,v 1.7 2000/11/02 06:57:44 vt Exp $ */ public class TransactionAdapterImpl extends ActiveService implements TransactionAdapter, LogFacility { @@ -315,7 +315,7 @@ * @exception InterruptedException if this thread was interrupted by * another thread. */ - protected void shutdown() throws InterruptedException { + protected void shutdown(Throwable failureCause) throws InterruptedException { if ( conn instanceof PassiveService ) { |