Interface PostJobAction
-
- All Superinterfaces:
BambooPluginModule
- All Known Implementing Classes:
DummyPostJobAction
@PublicApi public interface PostJobAction extends BambooPluginModule
Custom action that runs after aJob
has finished executing as part of aChainStage
- Since:
- 2.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default void
execute(@NotNull StageExecution stageExecution, @NotNull Job job, @NotNull BuildResultsSummary buildResultsSummary)
Deprecated.since 6.10 this method no longer works for plan branches.void
execute(@NotNull StageExecution stageExecution, @NotNull ImmutableJob job, @NotNull BuildResultsSummary buildResultsSummary)
Executes the custom action
-
-
-
Method Detail
-
execute
@Deprecated default void execute(@NotNull @NotNull StageExecution stageExecution, @NotNull @NotNull Job job, @NotNull @NotNull BuildResultsSummary buildResultsSummary)
Deprecated.since 6.10 this method no longer works for plan branches. Useexecute(StageExecution, ImmutableJob, BuildResultsSummary)
insteadExecutes the custom action
-
execute
void execute(@NotNull @NotNull StageExecution stageExecution, @NotNull @NotNull ImmutableJob job, @NotNull @NotNull BuildResultsSummary buildResultsSummary)
Executes the custom action
-
-