Uses of Class
org.jenkinsci.plugins.workflow.flow.FlowExecution
Packages that use FlowExecution
Package
Description
Provides a library of methods to work with and analyze the graph of 
FlowNodes produced from a pipeline execution.- 
Uses of FlowExecution in org.jenkinsci.plugins.workflow.actions
Methods in org.jenkinsci.plugins.workflow.actions with parameters of type FlowExecutionModifier and TypeMethodDescriptionstatic FlowNodeErrorAction.findOrigin(Throwable error, FlowExecution execution) Attempts to locate the first node of a build which threw an error. - 
Uses of FlowExecution in org.jenkinsci.plugins.workflow.flow
Methods in org.jenkinsci.plugins.workflow.flow that return FlowExecutionModifier and TypeMethodDescriptionFlowDefinition.create(FlowExecutionOwner handle, TaskListener listener, List<? extends Action> actions) Starts a brand new execution of this definition from the beginning.FlowDefinition.create(FlowExecutionOwner handle, List<? extends Action> actions) Deprecated.abstract FlowExecutionFlowExecutionOwner.get()FlowExecutionOwner.getOrNull()Same asFlowExecutionOwner.get()but avoids throwing an exception or blocking.Methods in org.jenkinsci.plugins.workflow.flow that return types with arguments of type FlowExecutionModifier and TypeMethodDescriptionFlowExecutionList.DefaultStorage.iterator()FlowExecutionList.iterator()Lists all the currentFlowExecutions.FlowExecutionList.Storage.iterator()Enumerate running builds.Methods in org.jenkinsci.plugins.workflow.flow with parameters of type FlowExecutionModifier and TypeMethodDescriptionstatic voidFlowExecutionListener.fireCompleted(FlowExecution execution) Fires theFlowExecutionListener.onCompleted(FlowExecution)event.static voidFlowExecutionListener.fireCreated(FlowExecution execution) Fires theFlowExecutionListener.onCreated(FlowExecution)event.static voidFlowExecutionListener.fireResumed(FlowExecution execution) Fires theFlowExecutionListener.onResumed(FlowExecution)event.static voidFlowExecutionListener.fireRunning(FlowExecution execution) Fires theFlowExecutionListener.onRunning(FlowExecution)event.voidFlowExecutionListener.onCompleted(FlowExecution execution) Called when aFlowExecutionhas completed.voidFlowExecutionListener.onCreated(FlowExecution execution) Called when aFlowExecutionhas been created, but before it starts running.voidFlowExecutionList.ResumeStepExecutionListener.onResumed(FlowExecution e) voidFlowExecutionListener.onResumed(FlowExecution execution) Called when aFlowExecutionhas resumed.voidFlowExecutionListener.onRunning(FlowExecution execution) Called when aFlowExecutionhas started running. - 
Uses of FlowExecution in org.jenkinsci.plugins.workflow.graph
Methods in org.jenkinsci.plugins.workflow.graph that return FlowExecutionConstructors in org.jenkinsci.plugins.workflow.graph with parameters of type FlowExecutionModifierConstructorDescriptionprotectedAtomNode(FlowExecution exec, String id, FlowNode... parents) BlockEndNode(FlowExecution exec, String id, START start, List<FlowNode> parents) BlockEndNode(FlowExecution exec, String id, START start, FlowNode... parents) protectedBlockStartNode(FlowExecution exec, String id, List<FlowNode> parents) protectedBlockStartNode(FlowExecution exec, String id, FlowNode... parents) FlowEndNode(FlowExecution exec, String id, FlowStartNode start, Result result, FlowNode... parents) FlowGraphWalker(FlowExecution exec) protectedFlowNode(FlowExecution exec, String id, List<FlowNode> parents) protectedFlowNode(FlowExecution exec, String id, FlowNode... parents) FlowStartNode(FlowExecution exec, String id) ForkNode(FlowExecution storage, String id, FlowNode... parents) Deprecated.Deprecated. - 
Uses of FlowExecution in org.jenkinsci.plugins.workflow.graphanalysis
Methods in org.jenkinsci.plugins.workflow.graphanalysis with parameters of type FlowExecutionModifier and TypeMethodDescriptionAbstractFlowScanner.allNodes(FlowExecution exec) Convenience method to get the list of allFlowNodes for the execution, in iterator order.AbstractFlowScanner.filteredNodes(FlowExecution exec, com.google.common.base.Predicate<FlowNode> matchPredicate) AbstractFlowScanner.findFirstMatch(FlowExecution exec, com.google.common.base.Predicate<FlowNode> matchPredicate) Syntactic sugar forAbstractFlowScanner.findFirstMatch(Collection, Collection, Predicate)usinggetCurrentHeads()to get heads and no denyListLinearScanner.findFirstMatch(FlowExecution exec, com.google.common.base.Predicate<FlowNode> matchPredicate) Deprecated.unsafe to call