delight.async.Operation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of delight-async Show documentation
Show all versions of delight-async Show documentation
Asynchronous utilities for Java and GWT applications. Includes a simple promise implementation for Java.
package delight.async;
import delight.async.callbacks.ValueCallback;
/**
* The definition of an asynchronous operation with no parameters.
*
* @param
*/
public interface Operation {
public void apply(ValueCallback callback);
}