cdc.applic.factorization.handlers.Handler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-factorization Show documentation
Show all versions of cdc-applic-factorization Show documentation
Applicabilities Factorization.
package cdc.applic.factorization.handlers;
/**
* Base interface of handlers.
*
* @author Damien Carbonne
*/
public interface Handler {
/**
* Invoked once at process beginning.
*/
public default void processBegin() {
// Ignore
}
/**
* Invoked once at process end.
*/
public default void processEnd() {
// Ignore
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy