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

cn.mapway.document.ui.client.rpc.IOnData Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
package cn.mapway.document.ui.client.rpc;

// TODO: Auto-generated Javadoc

/**
 * The Interface IOnData.
 *
 * @param  the generic type
 */
public interface IOnData {

    /**
     * On error.
     *
     * @param url   the url
     * @param error the error
     */
    public void onError(String url,String error);

    /**
     * On success.
     *
     * @param url  the url
     * @param data the data
     */
    public void onSuccess(String url,T data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy