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

com.openfin.desktop.AsyncCallback Maven / Gradle / Ivy

There is a newer version: 11.0.2
Show newest version
package com.openfin.desktop;

/**
 * The interface a caller must implement to receive a response from a call to AppDesktop.
 */
public interface AsyncCallback {

    /**
     * Called when asynchronous call completes successfully
     * @param result the return value of the asynchronous call
     */
    void onSuccess(T result);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy