All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 Tasks. *

*/ public interface EventHandler { /** * Handle an event. * * @param event the event to handle */ public void handle(Event event); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy