Package hudson.model
Class BuildStepListener
java.lang.Object
hudson.model.BuildStepListener
- All Implemented Interfaces:
 ExtensionPoint
Receives events that happen as a build executes 
BuildSteps.- Since:
 - 1.502
 - Author:
 - Nicolas De Loof
 
- 
Nested Class Summary
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionstatic ExtensionList<BuildStepListener>all()Returns all the registeredBuildStepListeners.abstract voidfinished(AbstractBuild build, BuildStep bs, BuildListener listener, boolean canContinue) Called when a buildStep has completed.abstract voidstarted(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 registeredBuildStepListeners. 
 -