Added some algorithms and moved some files and fixed some comments
This commit is contained in:
parent
017a27931a
commit
9297bea93d
25 changed files with 1043 additions and 192 deletions
10
src/zutil/network/nio/worker/grid/GridResultHandler.java
Normal file
10
src/zutil/network/nio/worker/grid/GridResultHandler.java
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue