delight.async.callbacks.ValueCallback 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;
public interface ValueCallback extends FailureCallback {
/**
* Asynchronous operation successfully completed.
* @param value
*/
public void onSuccess(T value);
}