11 lines
231 B
Java
11 lines
231 B
Java
|
|
package zutil.network.nio.worker.grid;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Handles the incoming results from the grid
|
||
|
|
*
|
||
|
|
* @author Ziver
|
||
|
|
*/
|
||
|
|
public interface GridResultHandler<T> {
|
||
|
|
public void resultEvent(int jobID, boolean correct, T result);
|
||
|
|
}
|