2011-02-15 19:37:35 +00:00
|
|
|
package zutil.net.nio.worker.grid;
|
2009-02-26 17:10:57 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Handles the incoming results from the grid
|
|
|
|
|
*
|
|
|
|
|
* @author Ziver
|
|
|
|
|
*/
|
|
|
|
|
public interface GridResultHandler<T> {
|
2010-08-14 15:33:19 +00:00
|
|
|
|
2009-02-26 17:10:57 +00:00
|
|
|
public void resultEvent(int jobID, boolean correct, T result);
|
|
|
|
|
}
|