Uses of Interface
org.camunda.bpm.engine.batch.Batch
-
-
Uses of Batch in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return Batch Modifier and Type Method Description Batch
HistoryService. deleteHistoricDecisionInstancesAsync(List<String> decisionInstanceIds, String deleteReason)
Deletes historic decision instances asynchronously based on a list of decision instances.Batch
HistoryService. deleteHistoricDecisionInstancesAsync(List<String> decisionInstanceIds, HistoricDecisionInstanceQuery query, String deleteReason)
Deletes historic decision instances asynchronously based on query and a list of decision instances, whereby query result and list of ids will be merged.Batch
HistoryService. deleteHistoricDecisionInstancesAsync(HistoricDecisionInstanceQuery query, String deleteReason)
Deletes historic decision instances asynchronously based on query of decision instances.Batch
HistoryService. deleteHistoricProcessInstancesAsync(List<String> processInstanceIds, String deleteReason)
Deletes historic process instances asynchronously.Batch
HistoryService. deleteHistoricProcessInstancesAsync(List<String> processInstanceIds, HistoricProcessInstanceQuery query, String deleteReason)
Deletes historic process instances asynchronously based on query and a list of process instances.Batch
HistoryService. deleteHistoricProcessInstancesAsync(HistoricProcessInstanceQuery query, String deleteReason)
Deletes historic process instances asynchronously based on query.Batch
RuntimeService. deleteProcessInstancesAsync(List<String> processInstanceIds, String deleteReason)
Delete an existing runtime process instances asynchronously using Batch operation.Batch
RuntimeService. deleteProcessInstancesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, String deleteReason)
Delete an existing runtime process instances asynchronously using Batch operation.Batch
RuntimeService. deleteProcessInstancesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, String deleteReason, boolean skipCustomListeners)
Delete an existing runtime process instances asynchronously using Batch operation.Batch
RuntimeService. deleteProcessInstancesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, String deleteReason, boolean skipCustomListeners, boolean skipSubprocesses)
Delete an existing runtime process instances asynchronously using Batch operation.Batch
RuntimeService. deleteProcessInstancesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, String deleteReason, boolean skipCustomListeners, boolean skipSubprocesses)
Delete an existing runtime process instances asynchronously using Batch operation.Batch
RuntimeService. deleteProcessInstancesAsync(ProcessInstanceQuery processInstanceQuery, String deleteReason)
Delete an existing runtime process instances asynchronously using Batch operation.Batch
ManagementService. setJobRetriesAsync(List<String> jobIds, int retries)
Sets the number of retries that jobs have left asynchronously.Batch
ManagementService. setJobRetriesAsync(List<String> jobIds, JobQuery jobQuery, int retries)
Sets the number of retries that jobs have left asynchronously.Batch
ManagementService. setJobRetriesAsync(List<String> processInstanceIds, ProcessInstanceQuery query, int retries)
Sets the number of retries that jobs have left asynchronously.Batch
ManagementService. setJobRetriesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, int retries)
Sets the number of retries that jobs have left asynchronously.Batch
ManagementService. setJobRetriesAsync(JobQuery jobQuery, int retries)
Sets the number of retries that jobs have left asynchronously.Batch
ExternalTaskService. setRetriesAsync(List<String> externalTaskIds, ExternalTaskQuery externalTaskQuery, int retries)
Sets the retries for external tasks asynchronously as batch.Batch
RuntimeService. setVariablesAsync(List<String> processInstanceIds, Map<String,?> variables)
Update or create runtime process variables in the root scope of process instances.Batch
RuntimeService. setVariablesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, Map<String,?> variables)
Update or create runtime process variables in the root scope of process instances.Batch
RuntimeService. setVariablesAsync(HistoricProcessInstanceQuery historicProcessInstanceQuery, Map<String,?> variables)
Update or create runtime process variables in the root scope of process instances.Batch
RuntimeService. setVariablesAsync(ProcessInstanceQuery processInstanceQuery, Map<String,?> variables)
Update or create runtime process variables in the root scope of process instances. -
Uses of Batch in org.camunda.bpm.engine.batch
Subinterfaces of Batch in org.camunda.bpm.engine.batch Modifier and Type Interface Description interface
BatchStatistics
Additional statistics for a single batch. -
Uses of Batch in org.camunda.bpm.engine.externaltask
Methods in org.camunda.bpm.engine.externaltask that return Batch Modifier and Type Method Description Batch
UpdateExternalTaskRetriesBuilder. setAsync(int retries)
Sets the retries for external tasks asynchronously as batch. -
Uses of Batch in org.camunda.bpm.engine.history
Methods in org.camunda.bpm.engine.history that return Batch Modifier and Type Method Description Batch
SetRemovalTimeToHistoricBatchesBuilder. executeAsync()
Sets the removal time asynchronously as batch.Batch
SetRemovalTimeToHistoricDecisionInstancesBuilder. executeAsync()
Sets the removal time asynchronously as batch.Batch
SetRemovalTimeToHistoricProcessInstancesBuilder. executeAsync()
Sets the removal time asynchronously as batch. -
Uses of Batch in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return Batch Modifier and Type Method Description Batch
UpdateProcessInstancesSuspensionStateBuilderImpl. activateAsync()
Batch
MessageCorrelationAsyncBuilderImpl. correlateAllAsync()
Batch
HistoryServiceImpl. deleteHistoricDecisionInstancesAsync(List<String> decisionInstanceIds, String deleteReason)
Batch
HistoryServiceImpl. deleteHistoricDecisionInstancesAsync(List<String> decisionInstanceIds, HistoricDecisionInstanceQuery query, String deleteReason)
Batch
HistoryServiceImpl. deleteHistoricDecisionInstancesAsync(HistoricDecisionInstanceQuery query, String deleteReason)
Batch
HistoryServiceImpl. deleteHistoricProcessInstancesAsync(List<String> processInstanceIds, String deleteReason)
Batch
HistoryServiceImpl. deleteHistoricProcessInstancesAsync(List<String> processInstanceIds, HistoricProcessInstanceQuery query, String deleteReason)
Batch
HistoryServiceImpl. deleteHistoricProcessInstancesAsync(HistoricProcessInstanceQuery query, String deleteReason)
Batch
RuntimeServiceImpl. deleteProcessInstancesAsync(List<String> processInstanceIds, String deleteReason)
Batch
RuntimeServiceImpl. deleteProcessInstancesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, String deleteReason)
Batch
RuntimeServiceImpl. deleteProcessInstancesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, String deleteReason, boolean skipCustomListeners)
Batch
RuntimeServiceImpl. deleteProcessInstancesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, String deleteReason, boolean skipCustomListeners, boolean skipSubprocesses)
Batch
RuntimeServiceImpl. deleteProcessInstancesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, String deleteReason, boolean skipCustomListeners, boolean skipSubprocesses)
Batch
RuntimeServiceImpl. deleteProcessInstancesAsync(ProcessInstanceQuery processInstanceQuery, String deleteReason)
Batch
ModificationBuilderImpl. executeAsync()
Batch
ProcessInstanceModificationBuilderImpl. executeAsync()
Batch
ProcessInstanceModificationBuilderImpl. executeAsync(boolean skipCustomListeners, boolean skipIoMappings)
Batch
RestartProcessInstanceBuilderImpl. executeAsync()
Batch
ManagementServiceImpl. setJobRetriesAsync(List<String> jobIds, int retries)
Batch
ManagementServiceImpl. setJobRetriesAsync(List<String> jobIds, JobQuery jobQuery, int retries)
Batch
ManagementServiceImpl. setJobRetriesAsync(List<String> processInstanceIds, ProcessInstanceQuery query, int retries)
Batch
ManagementServiceImpl. setJobRetriesAsync(List<String> processInstanceIds, ProcessInstanceQuery query, HistoricProcessInstanceQuery historicProcessInstanceQuery, int retries)
Batch
ManagementServiceImpl. setJobRetriesAsync(JobQuery jobQuery, int retries)
Batch
ExternalTaskServiceImpl. setRetriesAsync(List<String> externalTaskIds, ExternalTaskQuery externalTaskQuery, int retries)
Batch
RuntimeServiceImpl. setVariablesAsync(List<String> processInstanceIds, Map<String,?> variables)
Batch
RuntimeServiceImpl. setVariablesAsync(List<String> processInstanceIds, ProcessInstanceQuery processInstanceQuery, HistoricProcessInstanceQuery historicProcessInstanceQuery, Map<String,?> variables)
Batch
RuntimeServiceImpl. setVariablesAsync(HistoricProcessInstanceQuery historicProcessInstanceQuery, Map<String,?> variables)
Batch
RuntimeServiceImpl. setVariablesAsync(ProcessInstanceQuery processInstanceQuery, Map<String,?> variables)
Batch
UpdateProcessInstancesSuspensionStateBuilderImpl. suspendAsync()
-
Uses of Batch in org.camunda.bpm.engine.impl.batch
Classes in org.camunda.bpm.engine.impl.batch that implement Batch Modifier and Type Class Description class
BatchEntity
class
BatchStatisticsEntity
Methods in org.camunda.bpm.engine.impl.batch that return Batch Modifier and Type Method Description Batch
RestartProcessInstancesBatchCmd. execute(CommandContext commandContext)
Methods in org.camunda.bpm.engine.impl.batch that return types with arguments of type Batch Modifier and Type Method Description List<Batch>
BatchQueryImpl. executeList(CommandContext commandContext, Page page)
-
Uses of Batch in org.camunda.bpm.engine.impl.batch.builder
Methods in org.camunda.bpm.engine.impl.batch.builder that return Batch Modifier and Type Method Description Batch
BatchBuilder. build()
-
Uses of Batch in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return Batch Modifier and Type Method Description Batch
AbstractSetJobsRetriesBatchCmd. execute(CommandContext commandContext)
Batch
ModifyProcessInstanceAsyncCmd. execute(CommandContext commandContext)
Batch
ProcessInstanceModificationBatchCmd. execute(CommandContext commandContext)
Batch
SetExternalTasksRetriesBatchCmd. execute(CommandContext commandContext)
Batch
UpdateProcessInstancesSuspendStateBatchCmd. execute(CommandContext commandContext)
Batch
UpdateExternalTaskRetriesBuilderImpl. setAsync(int retries)
-
Uses of Batch in org.camunda.bpm.engine.impl.cmd.batch
Methods in org.camunda.bpm.engine.impl.cmd.batch that return Batch Modifier and Type Method Description Batch
CorrelateAllMessageBatchCmd. execute(CommandContext commandContext)
Batch
DeleteHistoricProcessInstancesBatchCmd. execute(CommandContext commandContext)
Batch
DeleteProcessInstanceBatchCmd. execute(CommandContext commandContext)
-
Uses of Batch in org.camunda.bpm.engine.impl.cmd.batch.removaltime
Methods in org.camunda.bpm.engine.impl.cmd.batch.removaltime that return Batch Modifier and Type Method Description Batch
SetRemovalTimeToHistoricBatchesCmd. execute(CommandContext commandContext)
Batch
SetRemovalTimeToHistoricDecisionInstancesCmd. execute(CommandContext commandContext)
Batch
SetRemovalTimeToHistoricProcessInstancesCmd. execute(CommandContext commandContext)
-
Uses of Batch in org.camunda.bpm.engine.impl.cmd.batch.variables
Methods in org.camunda.bpm.engine.impl.cmd.batch.variables that return Batch Modifier and Type Method Description Batch
SetVariablesToProcessInstancesBatchCmd. execute(CommandContext commandContext)
-
Uses of Batch in org.camunda.bpm.engine.impl.dmn.cmd
Methods in org.camunda.bpm.engine.impl.dmn.cmd that return Batch Modifier and Type Method Description Batch
DeleteHistoricDecisionInstancesBatchCmd. execute(CommandContext commandContext)
-
Uses of Batch in org.camunda.bpm.engine.impl.history
Methods in org.camunda.bpm.engine.impl.history that return Batch Modifier and Type Method Description Batch
SetRemovalTimeToHistoricBatchesBuilderImpl. executeAsync()
Batch
SetRemovalTimeToHistoricDecisionInstancesBuilderImpl. executeAsync()
Batch
SetRemovalTimeToHistoricProcessInstancesBuilderImpl. executeAsync()
-
Uses of Batch in org.camunda.bpm.engine.impl.history.producer
Methods in org.camunda.bpm.engine.impl.history.producer with parameters of type Batch Modifier and Type Method Description HistoryEvent
DefaultHistoryEventProducer. createBatchEndEvent(Batch batch)
HistoryEvent
HistoryEventProducer. createBatchEndEvent(Batch batch)
Creates the history event fired when the a batch has been completed.HistoryEvent
DefaultHistoryEventProducer. createBatchStartEvent(Batch batch)
HistoryEvent
HistoryEventProducer. createBatchStartEvent(Batch batch)
Creates the history event fired when the a batch has been started.HistoryEvent
DefaultHistoryEventProducer. createBatchUpdateEvent(Batch batch)
HistoryEvent
HistoryEventProducer. createBatchUpdateEvent(Batch batch)
Creates the history event fired when a batch has been updated. -
Uses of Batch in org.camunda.bpm.engine.impl.migration
Methods in org.camunda.bpm.engine.impl.migration that return Batch Modifier and Type Method Description Batch
MigrationPlanExecutionBuilderImpl. executeAsync()
-
Uses of Batch in org.camunda.bpm.engine.impl.migration.batch
Methods in org.camunda.bpm.engine.impl.migration.batch that return Batch Modifier and Type Method Description Batch
MigrateProcessInstanceBatchCmd. execute(CommandContext commandContext)
-
Uses of Batch in org.camunda.bpm.engine.impl.persistence.entity
Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type Batch Modifier and Type Method Description List<Batch>
BatchManager. findBatchesByQueryCriteria(BatchQueryImpl batchQuery, Page page)
-
Uses of Batch in org.camunda.bpm.engine.migration
Methods in org.camunda.bpm.engine.migration that return Batch Modifier and Type Method Description Batch
MigrationPlanExecutionBuilder. executeAsync()
Execute the migration asynchronously as batch. -
Uses of Batch in org.camunda.bpm.engine.rest.dto.batch
Methods in org.camunda.bpm.engine.rest.dto.batch with parameters of type Batch Modifier and Type Method Description static BatchDto
BatchDto. fromBatch(Batch batch)
-
Uses of Batch in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime that return Batch Modifier and Type Method Description Batch
ProcessInstanceSuspensionStateAsyncDto. updateSuspensionStateAsync(ProcessEngine engine)
-
Uses of Batch in org.camunda.bpm.engine.rest.impl
Methods in org.camunda.bpm.engine.rest.impl that return types with arguments of type Batch Modifier and Type Method Description protected List<Batch>
BatchRestServiceImpl. executePaginatedQuery(BatchQuery query, Integer firstResult, Integer maxResults)
-
Uses of Batch in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return Batch Modifier and Type Method Description Batch
UpdateProcessInstancesSuspensionStateBuilder. activateAsync()
Activates the provided process instances asynchronously.Batch
MessageCorrelationAsyncBuilder. correlateAllAsync()
Correlates a message asynchronously to executions that are waiting for this message based on the provided queries and list of process instance ids, whereby query results and list of ids will be merged.Batch
ModificationBuilder. executeAsync()
Execute the modification asynchronously as batch.Batch
ProcessInstanceModificationBuilder. executeAsync()
Execute all instructions asynchronously.Batch
ProcessInstanceModificationBuilder. executeAsync(boolean skipCustomListeners, boolean skipIoMappings)
Batch
RestartProcessInstanceBuilder. executeAsync()
Executes the restart asynchronously as batch.Batch
UpdateProcessInstancesSuspensionStateBuilder. suspendAsync()
Suspends the provided process instances asynchronously.
-