ai.h2o.automl.H2ORunnable Maven / Gradle / Ivy
The newest version!
package ai.h2o.automl;
/**
*
* The H2ORunnable
interface should be implemented by any class whose
* instances are intended to be submitted to the H2O forkjoin pool via
* H2O.submitTask
. The class must define a method of no arguments called
* run
.
*
*/
public interface H2ORunnable {
void run();
void stop();
}