delight.async.callbacks.BooleanCallback 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.callbacks;
/**
*
* A callback for asynchronous operations which return a boolean value.
*
* @author Max Rohde
*
*/
public interface BooleanCallback extends FailureCallback {
/**
* Asynchronous operation successfully completed.
*
* @param value
*/
public void onSuccess(boolean value);
}