Interface Batch
-
public interface BatchThis interface describes a batch that can be executed in a "serverless" environment or a JEE container.It must be executed using the method
BatchLauncher.executeBatch(Batch).- See Also:
BatchLauncher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidexecuteBatch(Repository aRepository)This method is called byBatchLauncher.executeBatch(Batch).
-
-
-
Method Detail
-
executeBatch
void executeBatch(Repository aRepository) throws Exception
This method is called byBatchLauncher.executeBatch(Batch).Before executing this method, the required architecture specified in the class comment of
BatchLaunchermust be respected.- Parameters:
aRepository- EBX® repository on which to execute the batch.- Throws:
Exception- See Also:
ProgrammaticService
-
-