Callback for async workers @param the type of object to be returned in the runnable @author cyberpwn
| 25 | * @author cyberpwn |
| 26 | */ |
| 27 | @FunctionalInterface |
| 28 | public interface Callback<T> { |
| 29 | /** |
| 30 | * Called when the callback calls back... |
| 31 | * |
| 32 | * @param t the object to be called back |
| 33 | */ |
| 34 | void run(T t); |
| 35 | } |
no outgoing calls
no test coverage detected