Interface PostChainAction
-
- All Superinterfaces:
BambooPluginModule
- All Known Implementing Classes:
BrokenBuildPostProcessor,CloverChainResultAggregator
@PublicApi public interface PostChainAction extends BambooPluginModule
Custom action that runs after theChainhas finished executing- Since:
- 2.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default voidexecute(@NotNull Chain chain, @NotNull ChainResultsSummary chainResultsSummary, @NotNull ChainExecution chainExecution)Deprecated.voidexecute(@NotNull ImmutableChain chain, @NotNull ChainResultsSummary chainResultsSummary, @NotNull ChainExecution chainExecution)Execute the custom action
-
-
-
Method Detail
-
execute
@Deprecated default void execute(@NotNull @NotNull Chain chain, @NotNull @NotNull ChainResultsSummary chainResultsSummary, @NotNull @NotNull ChainExecution chainExecution) throws InterruptedException, Exception
Deprecated.Execute the custom action- Throws:
InterruptedExceptionException
-
execute
void execute(@NotNull @NotNull ImmutableChain chain, @NotNull @NotNull ChainResultsSummary chainResultsSummary, @NotNull @NotNull ChainExecution chainExecution) throws InterruptedException, ExceptionExecute the custom action- Throws:
InterruptedExceptionException- Since:
- 7.1
-
-