Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/controller/pool
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1540
Modified Files:
PoolJobController.java
Log Message:
no message
Index: PoolJobController.java
===================================================================
RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/controller/pool/PoolJobController.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** PoolJobController.java 25 Mar 2006 19:31:20 -0000 1.3
--- PoolJobController.java 28 Mar 2006 04:54:21 -0000 1.4
***************
*** 1,3 ****
--- 1,4 ----
package org.jmonks.batchserver.framework.controller.pool;
+ import org.jmonks.batchserver.framework.common.ErrorCode;
import org.jmonks.batchserver.framework.config.JobControllerConfig;
import org.jmonks.batchserver.framework.controller.JobController;
***************
*** 53,57 ****
}
! public org.jmonks.batchserver.framework.common.StatusCode process()
{
--- 54,58 ----
}
! public ErrorCode process()
{
***************
*** 181,184 ****
--- 182,190 ----
}
+ public boolean isRestartable()
+ {
+ return true;
+ }
+
}
|