Uses of Interface
org.camunda.bpm.engine.impl.pvm.PvmActivity
-
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.bpmn.behavior
Fields in org.camunda.bpm.engine.impl.bpmn.behavior declared as PvmActivity Modifier and Type Field Description protected PvmActivity
CancelEndEventActivityBehavior. cancelBoundaryEvent
Methods in org.camunda.bpm.engine.impl.bpmn.behavior that return PvmActivity Modifier and Type Method Description PvmActivity
CancelEndEventActivityBehavior. getCancelBoundaryEvent()
Methods in org.camunda.bpm.engine.impl.bpmn.behavior with parameters of type PvmActivity Modifier and Type Method Description protected boolean
InclusiveGatewayActivityBehavior. activatesGateway(ActivityExecution execution, PvmActivity gatewayActivity)
protected boolean
InclusiveGatewayActivityBehavior. canReachActivity(ActivityExecution execution, PvmActivity activity)
ActivityImpl
MultiInstanceActivityBehavior. getInnerActivity(PvmActivity miBodyActivity)
Get the inner activity of the multi instance execution.protected boolean
InclusiveGatewayActivityBehavior. isReachable(PvmActivity srcActivity, PvmActivity targetActivity, Set<PvmActivity> visitedActivities)
protected void
ThrowEscalationEventActivityBehavior. leaveExecution(ActivityExecution execution, PvmActivity currentActivity, EscalationEventDefinition escalationEventDefinition)
protected void
MultiInstanceActivityBehavior. performInstance(ActivityExecution execution, PvmActivity activity, int loopCounter)
void
CancelEndEventActivityBehavior. setCancelBoundaryEvent(PvmActivity cancelBoundaryEvent)
Method parameters in org.camunda.bpm.engine.impl.bpmn.behavior with type arguments of type PvmActivity Modifier and Type Method Description protected boolean
InclusiveGatewayActivityBehavior. isReachable(PvmActivity srcActivity, PvmActivity targetActivity, Set<PvmActivity> visitedActivities)
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.bpmn.helper
Fields in org.camunda.bpm.engine.impl.bpmn.helper declared as PvmActivity Modifier and Type Field Description protected PvmActivity
ErrorDeclarationForProcessInstanceFinder. currentActivity
protected PvmActivity
ErrorDeclarationForProcessInstanceFinder. errorHandlerActivity
protected PvmActivity
EscalationEventDefinitionFinder. throwEscalationActivity
Methods in org.camunda.bpm.engine.impl.bpmn.helper that return PvmActivity Modifier and Type Method Description PvmActivity
ErrorDeclarationForProcessInstanceFinder. getErrorHandlerActivity()
Methods in org.camunda.bpm.engine.impl.bpmn.helper with parameters of type PvmActivity Modifier and Type Method Description protected boolean
ErrorDeclarationForProcessInstanceFinder. isReThrowingErrorEventSubprocess(PvmActivity activityHandler)
Constructors in org.camunda.bpm.engine.impl.bpmn.helper with parameters of type PvmActivity Constructor Description ErrorDeclarationForProcessInstanceFinder(Exception exception, String errorCode, PvmActivity currentActivity)
EscalationEventDefinitionFinder(String escalationCode, PvmActivity throwEscalationActivity)
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.bpmn.parser
Fields in org.camunda.bpm.engine.impl.bpmn.parser declared as PvmActivity Modifier and Type Field Description protected PvmActivity
EscalationEventDefinition. escalationHandler
Methods in org.camunda.bpm.engine.impl.bpmn.parser that return PvmActivity Modifier and Type Method Description PvmActivity
EscalationEventDefinition. getEscalationHandler()
Constructors in org.camunda.bpm.engine.impl.bpmn.parser with parameters of type PvmActivity Constructor Description EscalationEventDefinition(PvmActivity escalationHandler, boolean cancelActivity)
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.cmd
Method parameters in org.camunda.bpm.engine.impl.cmd with type arguments of type PvmActivity Modifier and Type Method Description protected void
AbstractInstantiationCmd. instantiate(ExecutionEntity ancestorScopeExecution, List<PvmActivity> parentFlowScopes, CoreModelElement targetElement)
protected void
AbstractInstantiationCmd. instantiateConcurrent(ExecutionEntity ancestorScopeExecution, List<PvmActivity> parentFlowScopes, CoreModelElement targetElement)
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.jobexecutor
Methods in org.camunda.bpm.engine.impl.jobexecutor with parameters of type PvmActivity Modifier and Type Method Description static List<EventSubscriptionJobDeclaration>
EventSubscriptionJobDeclaration. getDeclarationsForActivity(PvmActivity activity)
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.persistence.entity
Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type PvmActivity Modifier and Type Method Description void
ExecutionEntity. setActivity(PvmActivity activity)
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.pvm
Methods in org.camunda.bpm.engine.impl.pvm that return PvmActivity Modifier and Type Method Description PvmActivity
PvmScope. findActivity(String activityId)
Recursively finds a flow activity.PvmActivity
PvmScope. findActivityAtLevelOfSubprocess(String activityId)
Finds an activity at the same level of subprocess.PvmActivity
PvmExecution. getActivity()
PvmActivity
PvmTransition. getDestination()
PvmActivity
ReadOnlyProcessDefinition. getInitial()
PvmActivity
PvmTransition. getSource()
Methods in org.camunda.bpm.engine.impl.pvm that return types with arguments of type PvmActivity Modifier and Type Method Description List<? extends PvmActivity>
PvmScope. getActivities()
Returns the flow activities of this scope. -
Uses of PvmActivity in org.camunda.bpm.engine.impl.pvm.delegate
Methods in org.camunda.bpm.engine.impl.pvm.delegate that return PvmActivity Modifier and Type Method Description PvmActivity
ActivityExecution. getActivity()
returns the currentPvmActivity
of the execution.PvmActivity
ActivityExecution. getNextActivity()
An activity which is to be started next.Methods in org.camunda.bpm.engine.impl.pvm.delegate with parameters of type PvmActivity Modifier and Type Method Description void
ActivityExecution. executeActivity(PvmActivity activity)
Executes theActivityBehavior
associated with the given activity.List<ActivityExecution>
ActivityExecution. findInactiveChildExecutions(PvmActivity activity)
List<ActivityExecution>
ActivityExecution. findInactiveConcurrentExecutions(PvmActivity activity)
Retrieves all executions which are concurrent and inactive at the given activity.void
ActivityExecution. setActivity(PvmActivity activity)
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.pvm.process
Classes in org.camunda.bpm.engine.impl.pvm.process that implement PvmActivity Modifier and Type Class Description class
ActivityImpl
Methods in org.camunda.bpm.engine.impl.pvm.process that return PvmActivity Modifier and Type Method Description PvmActivity
TransitionImpl. getDestination()
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.pvm.runtime
Fields in org.camunda.bpm.engine.impl.pvm.runtime declared as PvmActivity Modifier and Type Field Description protected PvmActivity
PvmExecutionImpl. nextActivity
the activity which is to be started nextprotected PvmActivity
InstantiationStack. targetActivity
Fields in org.camunda.bpm.engine.impl.pvm.runtime with type parameters of type PvmActivity Modifier and Type Field Description protected List<PvmActivity>
InstantiationStack. activities
Methods in org.camunda.bpm.engine.impl.pvm.runtime that return PvmActivity Modifier and Type Method Description PvmActivity
PvmExecutionImpl. getNextActivity()
PvmActivity
InstantiationStack. getTargetActivity()
Methods in org.camunda.bpm.engine.impl.pvm.runtime that return types with arguments of type PvmActivity Modifier and Type Method Description List<PvmActivity>
InstantiationStack. getActivities()
Map<PvmActivity,PvmExecutionImpl>
PvmExecutionImpl. instantiateScopes(List<PvmActivity> activityStack, boolean skipCustomListeners, boolean skipIoMappings)
Instantiates the given set of activities and returns the execution for the bottom-most activityMethods in org.camunda.bpm.engine.impl.pvm.runtime with parameters of type PvmActivity Modifier and Type Method Description static void
LegacyBehavior. cancelConcurrentScope(PvmExecutionImpl execution, PvmActivity cancelledScopeActivity)
Cancels an execution which is both concurrent and scope.void
PvmExecutionImpl. executeActivities(List<PvmActivity> activityStack, PvmActivity targetActivity, PvmTransition targetTransition, Map<String,Object> variables, Map<String,Object> localVariables, boolean skipCustomListeners, boolean skipIoMappings)
Instantiates the given activity stack.void
PvmExecutionImpl. executeActivitiesConcurrent(List<PvmActivity> activityStack, PvmActivity targetActivity, PvmTransition targetTransition, Map<String,Object> variables, Map<String,Object> localVariables, boolean skipCustomListeners, boolean skipIoMappings)
Instantiates the given activity stack under this execution.void
PvmExecutionImpl. executeActivity(PvmActivity activity)
Execute an activity which is not contained in normal flow (having no incoming sequence flows).List<ActivityExecution>
PvmExecutionImpl. findInactiveChildExecutions(PvmActivity activity)
List<ActivityExecution>
PvmExecutionImpl. findInactiveConcurrentExecutions(PvmActivity activity)
void
PvmExecutionImpl. setActivity(PvmActivity activity)
void
PvmExecutionImpl. setNextActivity(PvmActivity nextActivity)
Method parameters in org.camunda.bpm.engine.impl.pvm.runtime with type arguments of type PvmActivity Modifier and Type Method Description void
PvmExecutionImpl. executeActivities(List<PvmActivity> activityStack, PvmActivity targetActivity, PvmTransition targetTransition, Map<String,Object> variables, Map<String,Object> localVariables, boolean skipCustomListeners, boolean skipIoMappings)
Instantiates the given activity stack.void
PvmExecutionImpl. executeActivitiesConcurrent(List<PvmActivity> activityStack, PvmActivity targetActivity, PvmTransition targetTransition, Map<String,Object> variables, Map<String,Object> localVariables, boolean skipCustomListeners, boolean skipIoMappings)
Instantiates the given activity stack under this execution.Map<PvmActivity,PvmExecutionImpl>
PvmExecutionImpl. instantiateScopes(List<PvmActivity> activityStack, boolean skipCustomListeners, boolean skipIoMappings)
Instantiates the given set of activities and returns the execution for the bottom-most activityConstructors in org.camunda.bpm.engine.impl.pvm.runtime with parameters of type PvmActivity Constructor Description InstantiationStack(List<PvmActivity> activities, PvmActivity targetActivity, PvmTransition targetTransition)
Constructor parameters in org.camunda.bpm.engine.impl.pvm.runtime with type arguments of type PvmActivity Constructor Description InstantiationStack(List<PvmActivity> activities)
InstantiationStack(List<PvmActivity> activities, PvmActivity targetActivity, PvmTransition targetTransition)
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.pvm.runtime.operation
Methods in org.camunda.bpm.engine.impl.pvm.runtime.operation that return PvmActivity Modifier and Type Method Description protected PvmActivity
PvmAtomicOperationActivityStartCancelScope. getCancellingActivity(PvmExecutionImpl execution)
protected PvmActivity
PvmAtomicOperationActivityStartInterruptEventScope. getInterruptingActivity(PvmExecutionImpl execution)
protected abstract PvmActivity
PvmAtomicOperationInterruptScope. getInterruptingActivity(PvmExecutionImpl execution)
protected PvmActivity
PvmAtomicOperationsTransitionInterruptFlowScope. getInterruptingActivity(PvmExecutionImpl execution)
Methods in org.camunda.bpm.engine.impl.pvm.runtime.operation with parameters of type PvmActivity Modifier and Type Method Description protected ActivityImpl
PvmAtomicOperationDeleteCascadeFireActivityEnd. getFlowScopeActivity(PvmActivity activity)
-
Uses of PvmActivity in org.camunda.bpm.engine.impl.tree
Fields in org.camunda.bpm.engine.impl.tree with type parameters of type PvmActivity Modifier and Type Field Description protected List<PvmActivity>
ActivityStackCollector. activityStack
Methods in org.camunda.bpm.engine.impl.tree that return types with arguments of type PvmActivity Modifier and Type Method Description List<PvmActivity>
ActivityStackCollector. getActivityStack()
-