Interface PipelineInputStepListener
- All Superinterfaces:
ExtensionPoint
Listener for input step submission event
- Author:
- Vivek Pandey
-
Nested Class Summary
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onStepContinue
(org.jenkinsci.plugins.workflow.support.steps.input.InputStep inputStep, org.jenkinsci.plugins.workflow.job.WorkflowRun run) This event is sent when an input step moves from paused to continue state.
-
Method Details
-
onStepContinue
void onStepContinue(org.jenkinsci.plugins.workflow.support.steps.input.InputStep inputStep, org.jenkinsci.plugins.workflow.job.WorkflowRun run) This event is sent when an input step moves from paused to continue state. That is when an input form is submitted.- Parameters:
inputStep
-InputStep
which got executed by submitting parametersrun
-WorkflowRun
associated with this input step
-