
sbt.testing.EventHandler Maven / Gradle / Ivy
The newest version!
package sbt.testing;
/**
* Interface implemented by clients that handle events fired by the test framework
* during a run.
*
*
* An event handler is passed to the test framework via the execute
method
* of Task
s.
*
*/
public interface EventHandler {
/**
* Handle an event.
*
* @param event the event to handle
*/
public void handle(Event event);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy