All Downloads are FREE. Search and download functionalities are using the official Maven repository.

delight.async.Operation Maven / Gradle / Ivy

Go to download

Asynchronous utilities for Java and GWT applications. Includes a simple promise implementation for Java.

There is a newer version: 0.1.5
Show newest version
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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy