Interface StopOnManualStageAction
-
- All Superinterfaces:
BambooPluginModule
@PublicApi public interface StopOnManualStageAction extends BambooPluginModule
Custom action that runs after theChainStage
has stopped execution on manual stage. It will run after allPostStageAction
and before anyPostChainAction
related to the same build.- Since:
- 3.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(@NotNull ChainResultsSummary chainResultsSummary, @NotNull ChainStageResult chainStageResult, @NotNull StageExecution stageExecution)
Executes the custom action
-
-
-
Method Detail
-
execute
void execute(@NotNull @NotNull ChainResultsSummary chainResultsSummary, @NotNull @NotNull ChainStageResult chainStageResult, @NotNull @NotNull StageExecution stageExecution) throws InterruptedException, Exception
Executes the custom action- Parameters:
chainResultsSummary
-chainStageResult
-stageExecution
-- Throws:
InterruptedException
Exception
-
-