Uses of Class
org.jenkinsci.plugins.workflow.steps.BodyInvoker
Packages that use BodyInvoker
-
Uses of BodyInvoker in org.jenkinsci.plugins.workflow.steps
Methods in org.jenkinsci.plugins.workflow.steps that return BodyInvokerModifier and TypeMethodDescriptionabstract BodyInvoker
StepContext.newBodyInvoker()
Prepares for an asynchronous invocation of the body block that's given as an argument to this step invocation (in a host language dependent manner.)final BodyInvoker
BodyInvoker.withCallback
(com.google.common.util.concurrent.FutureCallback<Object> callback) Deprecated.abstract BodyInvoker
BodyInvoker.withCallback
(BodyExecutionCallback callback) Registers a callback that tracks the progress of the body execution.abstract BodyInvoker
BodyInvoker.withContext
(Object override) Overrides to the context values that are in effect while evaluating the body.BodyInvoker.withContexts
(Object... overrides) Equivalent to callingwithContext(java.lang.Object)
on each object.BodyInvoker.withContexts
(Collection<?> overrides) Equivalent to callingwithContext(java.lang.Object)
on each object.abstract BodyInvoker
BodyInvoker.withDisplayName
(String name) Sets a human readable name that describes this body invocation.Methods in org.jenkinsci.plugins.workflow.steps with parameters of type BodyInvokerModifier and TypeMethodDescriptionvoid
StepExecutions.BlockBody.call
(StepContext context, BodyInvoker invoker)
withCallback(BodyExecutionCallback)
and callBodyExecutionCallback.wrap(com.google.common.util.concurrent.FutureCallback<java.lang.Object>)
if this is what you really wanted.