|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface BatchAdapter
Interface BatchAdapter allows an instance to be notified by the BatchManager of execution events
of a BatchJob.
| Method Summary | |
|---|---|
void |
afterCompletion(BatchJob job,
boolean commit)
The afterCompletion method notifies a BatchAdapter that a batchjob has completed. |
void |
afterCreation(BatchJob job)
The afterCreation method notifies a batch adapter that a batchjob has been created. |
void |
beforeCompletion(BatchJob job)
The beforeCompletion method notifies a BatchAdapter that a BatchJob is about to complete. |
void |
doCompensate(BatchJob job)
|
void |
doStart(BatchJob job)
The doStart Method is reponsible for starting the batch job. |
void |
startup()
Startup is called when the adapter is instanciated by the BatchManager. |
| Method Detail |
|---|
void startup()
throws Exception
Exception
void afterCreation(BatchJob job)
throws Exception
This usually happens via a Batchmanager.submitJob() call.
It can be used to collect parameters from the process context.
If it makes any changes to the job, job.update() must be called.
It is typically executed from a preprocessing method of a Task and is expected to
complete quickly.
If an Exception is thrown by afterCreation, this exception is not catched and will manifest in the context of the caller (usually a preprocessing method).
job - a BatchJob
Exception
void doStart(BatchJob job)
throws Exception
It has to start the batch job in some external execution context. If it runs in the JVM itself, it is expected to complete quickly. The method is executed via the Batch Timer for each BatchJob, which is in state BatchJob.CREATED and whose starttime is either null or not in the future.
If an exception is thrown by doStart, the BatchManager places the job in state BatchJob.STARTERROR. No furter action is carried out by the system with this BatchJob. So either doStart itself has to take appropriate actions, or an adminstratotor must check for jobs in this state manually.
job - a BatchJob
Exception
void beforeCompletion(BatchJob job)
throws Exception
The method can be used to transfer results from the execution context of the finished jobs to the process context.
If an exception is thrown by beforeCompletion, the BatchManager places the job in state BatchJob.FINISHERROR. No furter action is carried out by the system with this BatchJob. So either beforeCompletion itself takes appropriate actions, or handling is done in afterCompletion, or an adminstrator must check for jobs in this state manually.
job - a BatchJob
Exception
void afterCompletion(BatchJob job,
boolean commit)
throws Exception
job - a BatchJobcommit - True if the job has been completed, false if there were errors.
Exception
void doCompensate(BatchJob job)
throws Exception
Exception
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||