[Batchserver-cvs] batchserver/src/org/jmonks/batchserver/framework/controller JobController.java,1.5
Brought to you by:
suresh_pragada
From: Suresh <sur...@us...> - 2006-05-03 13:01:54
|
Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/controller In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32745/org/jmonks/batchserver/framework/controller Modified Files: JobController.java Log Message: no message Index: JobController.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/controller/JobController.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** JobController.java 28 Mar 2006 04:53:58 -0000 1.5 --- JobController.java 3 May 2006 13:01:49 -0000 1.6 *************** *** 158,184 **** * @return Returns the exit status of the job. */ ! public abstract ErrorCode process(); ! ! /** ! * This method would enable the controller to deserialize its state from the repository. ! * ! * @param inputStream Stream from which the controller needs to be recovered. ! */ ! public abstract void readObject(ObjectInputStream inputStream); ! ! /** ! * This method enables the controller to persist/serializes on its own. ! * ! * @param outputStream Persist/Serialize the state of the controller. ! */ ! public abstract void writeObject(ObjectOutputStream outputStream); ! ! /** ! * Tells whether this controller can be restartable. Specialized controllers ! * collect this information from the specialized jobs. ! * ! * @return Returns true, if controller can be restarted, false, otherwise. ! */ ! public abstract boolean isRestartable(); ! } --- 158,161 ---- * @return Returns the exit status of the job. */ ! public abstract ErrorCode process(); } |