Uses of Interface
org.flowable.engine.runtime.Execution
Packages that use Execution
Package
Description
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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 administration and maintenance operations,
which have no relation to the runtime exection 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.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
RuntimeService.-
Uses of Execution in org.flowable.engine
Methods in org.flowable.engine that return ExecutionModifier and TypeMethodDescriptionRuntimeService.addMultiInstanceExecution(String activityId, String parentExecutionId, Map<String, Object> executionVariables) Adds a new execution to a running multi-instance parent executionRuntimeService.executeActivityInAdhocSubProcess(String executionId, String activityId) Executes an activity in a ad-hoc sub processMethods in org.flowable.engine that return types with arguments of type ExecutionModifier and TypeMethodDescriptionRuntimeService.getAdhocSubProcessExecutions(String processInstanceId) Gets executions with an adhoc sub process as current flow element -
Uses of Execution in org.flowable.engine.impl
Methods in org.flowable.engine.impl that return ExecutionModifier and TypeMethodDescriptionRuntimeServiceImpl.addMultiInstanceExecution(String activityId, String parentExecutionId, Map<String, Object> executionVariables) RuntimeServiceImpl.executeActivityInAdhocSubProcess(String executionId, String activityId) Methods in org.flowable.engine.impl that return types with arguments of type ExecutionModifier and TypeMethodDescriptionExecutionQueryImpl.executeList(CommandContext commandContext) NativeExecutionQueryImpl.executeList(CommandContext commandContext, Map<String, Object> parameterMap) RuntimeServiceImpl.getAdhocSubProcessExecutions(String processInstanceId) Methods in org.flowable.engine.impl with parameters of type Execution -
Uses of Execution in org.flowable.engine.impl.cmd
Methods in org.flowable.engine.impl.cmd that return ExecutionModifier and TypeMethodDescriptionAddMultiInstanceExecutionCmd.execute(CommandContext commandContext) ExecuteActivityForAdhocSubProcessCmd.execute(CommandContext commandContext) Methods in org.flowable.engine.impl.cmd that return types with arguments of type ExecutionModifier and TypeMethodDescriptionGetActiveAdhocSubProcessesCmd.execute(CommandContext commandContext) -
Uses of Execution in org.flowable.engine.impl.persistence.entity
Subinterfaces of Execution in org.flowable.engine.impl.persistence.entityClasses in org.flowable.engine.impl.persistence.entity that implement ExecutionMethods in org.flowable.engine.impl.persistence.entity that return types with arguments of type Execution -
Uses of Execution in org.flowable.engine.impl.persistence.entity.data
Methods in org.flowable.engine.impl.persistence.entity.data that return types with arguments of type Execution -
Uses of Execution in org.flowable.engine.impl.persistence.entity.data.impl
Methods in org.flowable.engine.impl.persistence.entity.data.impl that return types with arguments of type Execution -
Uses of Execution in org.flowable.engine.interceptor
Method parameters in org.flowable.engine.interceptor with type arguments of type ExecutionModifier and TypeMethodDescriptionvoidExecutionQueryInterceptor.afterExecutionQueryExecute(ExecutionQuery executionQuery, List<Execution> executions) -
Uses of Execution in org.flowable.engine.runtime
Subinterfaces of Execution in org.flowable.engine.runtimeMethods in org.flowable.engine.runtime with parameters of type ExecutionModifier and TypeMethodDescriptionbooleanProcessDebugger.isBreakpoint(Execution execution) Indicates that execution is in the breakpoint state -
Uses of Execution in org.flowable.rest.service.api
Methods in org.flowable.rest.service.api with parameters of type ExecutionModifier and TypeMethodDescriptionvoidBpmnRestApiInterceptor.accessExecutionInfoById(Execution execution) voidBpmnRestApiInterceptor.accessExecutionVariable(Execution execution, String variableName, String scope) BpmnRestApiInterceptor.accessExecutionVariables(Execution execution, Map<String, RestVariable> variables) RestResponseFactory.createExecutionResponse(Execution execution) RestResponseFactory.createExecutionResponse(Execution execution, RestUrlBuilder urlBuilder) voidBpmnRestApiInterceptor.createExecutionVariables(Execution execution, Map<String, Object> variables, RestVariable.RestVariableScope scope) voidBpmnRestApiInterceptor.deleteExecutionVariables(Execution execution, Collection<String> variableNames, RestVariable.RestVariableScope scope) voidBpmnRestApiInterceptor.updateExecutionVariables(Execution execution, Map<String, Object> variables, RestVariable.RestVariableScope scope) Method parameters in org.flowable.rest.service.api with type arguments of type ExecutionModifier and TypeMethodDescriptionRestResponseFactory.createExecutionResponseList(List<Execution> executions) -
Uses of Execution in org.flowable.rest.service.api.runtime.process
Methods in org.flowable.rest.service.api.runtime.process that return ExecutionModifier and TypeMethodDescriptionprotected ExecutionExecutionBaseResource.getExecutionFromRequest(String executionId) protected ExecutionBaseExecutionVariableResource.getExecutionFromRequestWithoutAccessCheck(String executionId) Methods in org.flowable.rest.service.api.runtime.process with parameters of type ExecutionModifier and TypeMethodDescriptionprotected voidBaseVariableCollectionResource.addGlobalVariables(Execution execution, Map<String, RestVariable> variableMap) protected voidProcessInstanceVariableCollectionResource.addGlobalVariables(Execution execution, Map<String, RestVariable> variableMap) protected voidBaseVariableCollectionResource.addLocalVariables(Execution execution, Map<String, RestVariable> variableMap) protected voidProcessInstanceVariableCollectionResource.addLocalVariables(Execution execution, Map<String, RestVariable> variableMap) protected ObjectBaseVariableCollectionResource.createExecutionVariable(Execution execution, boolean override, jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) voidBaseVariableCollectionResource.deleteAllLocalVariables(Execution execution) protected byte[]BaseExecutionVariableResource.getVariableDataByteArray(Execution execution, String variableName, String scope, jakarta.servlet.http.HttpServletResponse response) BaseExecutionVariableResource.getVariableFromRequest(Execution execution, String variableName, String scope, boolean includeBinary) BaseExecutionVariableResource.getVariableFromRequestWithoutAccessCheck(Execution execution, String variableName, RestVariable.RestVariableScope variableScope, boolean includeBinary) protected booleanBaseExecutionVariableResource.hasVariableOnScope(Execution execution, String variableName, RestVariable.RestVariableScope scope) protected List<RestVariable>BaseVariableCollectionResource.processVariables(Execution execution, String scope) protected RestVariableBaseExecutionVariableResource.setBinaryVariable(MultipartHttpServletRequest request, Execution execution, boolean isNew) protected RestVariableBaseExecutionVariableResource.setSimpleVariable(RestVariable restVariable, Execution execution, boolean isNew) protected voidBaseExecutionVariableResource.setVariable(Execution execution, String name, Object value, RestVariable.RestVariableScope scope, boolean isNew)