2011-02-15 19:37:35 +00:00
|
|
|
package zutil.net.nio.worker.grid;
|
2009-02-26 17:10:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Generates new jobs for the grid to compute
|
|
|
|
|
*
|
|
|
|
|
* @author Ziver
|
|
|
|
|
*/
|
|
|
|
|
public interface GridJobGenerator<T> {
|
|
|
|
|
/**
|
|
|
|
|
* @return static and final values that do not change for every job
|
|
|
|
|
*/
|
|
|
|
|
public Object initValues();
|
|
|
|
|
/**
|
|
|
|
|
* @return a new generated job
|
|
|
|
|
*/
|
|
|
|
|
public T generateJob();
|
|
|
|
|
}
|