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

delight.async.AsyncFunction 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;
import delight.functional.Closure2;

/**
 * A base template for an asynchronous function.
 * 
 * @author Max Rohde
 *
 * @param 
 * @param 
 */
public interface AsyncFunction extends Closure2> {

    @Override
    public void apply(Input input, ValueCallback callback);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy