Class BatchSeedJobHandler
java.lang.Object
org.camunda.bpm.engine.impl.batch.BatchSeedJobHandler
- All Implemented Interfaces:
JobHandler<BatchSeedJobHandler.BatchSeedJobConfiguration>
public class BatchSeedJobHandler
extends Object
implements JobHandler<BatchSeedJobHandler.BatchSeedJobConfiguration>
The batch seed job handler is responsible to
create all jobs to be executed by the batch.
If all jobs are created a seed monitor job is
created to oversee the completion of the batch
(see
BatchMonitorJobHandler
).-
Nested Class Summary
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
execute
(BatchSeedJobHandler.BatchSeedJobConfiguration configuration, ExecutionEntity execution, CommandContext commandContext, String tenantId) getType()
newConfiguration
(String canonicalString) void
onDelete
(BatchSeedJobHandler.BatchSeedJobConfiguration configuration, JobEntity jobEntity) Clean up before job is deleted.
-
Field Details
-
TYPE
- See Also:
-
-
Constructor Details
-
BatchSeedJobHandler
public BatchSeedJobHandler()
-
-
Method Details
-
getType
- Specified by:
getType
in interfaceJobHandler<BatchSeedJobHandler.BatchSeedJobConfiguration>
-
execute
public void execute(BatchSeedJobHandler.BatchSeedJobConfiguration configuration, ExecutionEntity execution, CommandContext commandContext, String tenantId) - Specified by:
execute
in interfaceJobHandler<BatchSeedJobHandler.BatchSeedJobConfiguration>
-
newConfiguration
- Specified by:
newConfiguration
in interfaceJobHandler<BatchSeedJobHandler.BatchSeedJobConfiguration>
-
onDelete
public void onDelete(BatchSeedJobHandler.BatchSeedJobConfiguration configuration, JobEntity jobEntity) Description copied from interface:JobHandler
Clean up before job is deleted. Like removing of auxiliary entities specific for this job handler.- Specified by:
onDelete
in interfaceJobHandler<BatchSeedJobHandler.BatchSeedJobConfiguration>
- Parameters:
configuration
- the job handler configurationjobEntity
- the job entity to be deleted
-