![JAR search and dependency download from the Maven repository](/logo.png)
com.sencha.gxt.data.shared.loader.DataProxy Maven / Gradle / Ivy
/**
* Ext GWT 3.0.0-rc - Ext for GWT
* Copyright(c) 2007-2011, Sencha, Inc.
* [email protected]
*
* http://sencha.com/license
*/
package com.sencha.gxt.data.shared.loader;
import com.google.gwt.core.client.Callback;
/**
* Defines the interface for objects that can retrieve data.
*
* @param the type of data used to configure the load from the proxy
* @param the type of data being returned by the data proxy
*/
public interface DataProxy {
/**
* Data should be retrieved using the specified load config. When specified,
* the DataReader
can be used to "process" the raw data.
*
* @param loadConfig the load config object to be passed to server
* @param callback the data callback
*/
public void load(C loadConfig, Callback callback);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy