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

cdc.applic.factorization.handlers.Handler Maven / Gradle / Ivy

There is a newer version: 0.13.3
Show newest version
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