Package hudson.model
Class BuildStepListener
java.lang.Object
hudson.model.BuildStepListener
- All Implemented Interfaces:
ExtensionPoint
Receives events that happen as a build executes
BuildStep
s.- Since:
- 1.502
- Author:
- Nicolas De Loof
-
Nested Class Summary
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ExtensionList<BuildStepListener>
all()
Returns all the registeredBuildStepListener
s.abstract void
finished
(AbstractBuild build, BuildStep bs, BuildListener listener, boolean canContinue) Called when a buildStep has completed.abstract void
started
(AbstractBuild build, BuildStep bs, BuildListener listener) Called when a buildStep is performed.
-
Constructor Details
-
BuildStepListener
public BuildStepListener()
-
-
Method Details
-
started
Called when a buildStep is performed. -
finished
public abstract void finished(AbstractBuild build, BuildStep bs, BuildListener listener, boolean canContinue) Called when a buildStep has completed. -
all
Returns all the registeredBuildStepListener
s.
-