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