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

express.filter.FilterTask Maven / Gradle / Ivy

The newest version!
package express.filter;

/**
 * @author Simon Reinisch
 * 

* Interface for filter tasks. */ public interface FilterTask { /** * Returns the delay between the updates * * @return Update delay in milliseconds */ long getDelay(); /** * Will be fired between the delays */ void onUpdate(); /** * Will be fired on express-start */ void onStart(); /** * Will be fired on express-stop */ void onStop(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy