co.leantechniques.maven.buildtime.TimerVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-buildtime-extension Show documentation
Show all versions of maven-buildtime-extension Show documentation
This extension displays the duration of each plugin
to discover why your build is slow.
The newest version!
package co.leantechniques.maven.buildtime;
/**
* Visitor Interface for Timer classes.
*
* It should not be implemented directly, use {@link AbstractTimerVisitor} instead.
*/
public interface TimerVisitor {
void visit(SessionTimer sessionTimer);
void visit(ProjectTimer projectTimer);
void visit(MojoTimer mojoTimer);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy