Uses of Interface
org.camunda.bpm.engine.batch.Batch

Packages that use Batch
org.camunda.bpm.engine Public API of the camunda BPM engine.

Typical usage of the API starts by the creation of a ProcessEngineConfiguration (typically based on a configuration file), from which a ProcessEngine can be obtained.

Through the services obtained from such a ProcessEngine, BPM and workflow operation can be executed:

RepositoryService: Manages Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: Exposes information about ongoing and past process instances.
FormService: Access to form data and rendered forms for starting new process instances and completing tasks.
 
org.camunda.bpm.engine.batch   
org.camunda.bpm.engine.externaltask   
org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
org.camunda.bpm.engine.impl.batch   
org.camunda.bpm.engine.impl.cmd   
org.camunda.bpm.engine.impl.cmd.batch   
org.camunda.bpm.engine.impl.history.producer   
org.camunda.bpm.engine.impl.migration   
org.camunda.bpm.engine.impl.migration.batch   
org.camunda.bpm.engine.impl.persistence.entity   
org.camunda.bpm.engine.migration   
org.camunda.bpm.engine.runtime Classes related to the RuntimeService
 

Uses of Batch in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return Batch
 Batch HistoryService.deleteHistoricProcessInstancesAsync(HistoricProcessInstanceQuery query, String deleteReason)
          Deletes historic process instances asynchronously based on query.
 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(List<String> processInstanceIds, String deleteReason)
          Deletes historic process instances asynchronously.
 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, String deleteReason)
          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(JobQuery jobQuery, int retries)
          Sets the number of retries that jobs have left asynchronously.
 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 ExternalTaskService.setRetriesAsync(List<String> externalTaskIds, ExternalTaskQuery externalTaskQuery, int retries)
          Sets the retries for external tasks asynchronously as batch.
 

Uses of Batch in org.camunda.bpm.engine.batch
 

Subinterfaces of Batch in org.camunda.bpm.engine.batch
 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
 Batch UpdateExternalTaskRetriesBuilder.setAsync(int retries)
          Sets the retries for external tasks asynchronously as batch.
 

Uses of Batch in org.camunda.bpm.engine.impl
 

Methods in org.camunda.bpm.engine.impl that return Batch
 Batch UpdateProcessInstancesSuspensionStateBuilderImpl.activateAsync()
           
 Batch HistoryServiceImpl.deleteHistoricProcessInstancesAsync(HistoricProcessInstanceQuery query, String deleteReason)
           
 Batch HistoryServiceImpl.deleteHistoricProcessInstancesAsync(List<String> processInstanceIds, HistoricProcessInstanceQuery query, String deleteReason)
           
 Batch HistoryServiceImpl.deleteHistoricProcessInstancesAsync(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, String deleteReason)
           
 Batch RuntimeServiceImpl.deleteProcessInstancesAsync(ProcessInstanceQuery processInstanceQuery, String deleteReason)
           
 Batch ModificationBuilderImpl.executeAsync()
           
 Batch RestartProcessInstanceBuilderImpl.executeAsync()
           
 Batch ManagementServiceImpl.setJobRetriesAsync(JobQuery jobQuery, int retries)
           
 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 ExternalTaskServiceImpl.setRetriesAsync(List<String> externalTaskIds, ExternalTaskQuery externalTaskQuery, int retries)
           
 Batch UpdateProcessInstancesSuspensionStateBuilderImpl.suspendAsync()
           
 

Uses of Batch in org.camunda.bpm.engine.impl.batch
 

Classes in org.camunda.bpm.engine.impl.batch that implement Batch
 class BatchEntity
           
 class BatchStatisticsEntity
           
 

Methods in org.camunda.bpm.engine.impl.batch that return Batch
 Batch RestartProcessInstancesBatchCmd.execute(CommandContext commandContext)
           
 

Methods in org.camunda.bpm.engine.impl.batch that return types with arguments of type Batch
 List<Batch> BatchQueryImpl.executeList(CommandContext commandContext, Page page)
           
 

Uses of Batch in org.camunda.bpm.engine.impl.cmd
 

Methods in org.camunda.bpm.engine.impl.cmd that return Batch
 Batch AbstractSetJobsRetriesBatchCmd.execute(CommandContext commandContext)
           
 Batch UpdateProcessInstancesSuspendStateBatchCmd.execute(CommandContext commandContext)
           
 Batch ProcessInstanceModificationBatchCmd.execute(CommandContext commandContext)
           
 Batch SetExternalTasksRetriesBatchCmd.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
 Batch DeleteProcessInstanceBatchCmd.execute(CommandContext commandContext)
           
 Batch DeleteHistoricProcessInstancesBatchCmd.execute(CommandContext commandContext)
           
 

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
 HistoryEvent HistoryEventProducer.createBatchEndEvent(Batch batch)
          Creates the history event fired when the a batch has been completed.
 HistoryEvent DefaultHistoryEventProducer.createBatchEndEvent(Batch batch)
           
 HistoryEvent HistoryEventProducer.createBatchStartEvent(Batch batch)
          Creates the history event fired when the a batch has been started.
 HistoryEvent DefaultHistoryEventProducer.createBatchStartEvent(Batch batch)
           
 

Uses of Batch in org.camunda.bpm.engine.impl.migration
 

Methods in org.camunda.bpm.engine.impl.migration that return Batch
 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
 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
 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
 Batch MigrationPlanExecutionBuilder.executeAsync()
          Execute the migration asynchronously as batch.
 

Uses of Batch in org.camunda.bpm.engine.runtime
 

Methods in org.camunda.bpm.engine.runtime that return Batch
 Batch UpdateProcessInstancesSuspensionStateBuilder.activateAsync()
           Activates the provided process instances asynchronously.
 Batch RestartProcessInstanceBuilder.executeAsync()
          Executes the restart asynchronously as batch.
 Batch ModificationBuilder.executeAsync()
          Execute the modification asynchronously as batch.
 Batch UpdateProcessInstancesSuspensionStateBuilder.suspendAsync()
           Suspends the provided process instances asynchronously.
 



Copyright © 2017 camunda services GmbH. All rights reserved.