package com.volmit.iris.util; /** * Callback for async workers * * @author cyberpwn * * @param * the type of object to be returned in the runnable */ @FunctionalInterface public interface Callback { /** * Called when the callback calls back... * * @param t * the object to be called back */ public void run(T t); }