Class RpcProxy<C,D>
- java.lang.Object
-
- com.sencha.gxt.data.client.loader.RpcProxy<C,D>
-
- Type Parameters:
C
- the type of data used to configure the load from the proxyD
- the type of data being returned by the data proxy
- All Implemented Interfaces:
DataProxy<C,D>
public abstract class RpcProxy<C,D> extends Object implements DataProxy<C,D>
DataProxy implementation that retrieves data using GWT RPC.
-
-
Constructor Summary
Constructors Constructor Description RpcProxy()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
load(C loadConfig, com.google.gwt.core.client.Callback<D,Throwable> callback)
Data should be retrieved using the specified load config.abstract void
load(C loadConfig, com.google.gwt.user.client.rpc.AsyncCallback<D> callback)
Retrieves data using GWT RPC.
-
-
-
Method Detail
-
load
public abstract void load(C loadConfig, com.google.gwt.user.client.rpc.AsyncCallback<D> callback)
Retrieves data using GWT RPC.- Parameters:
loadConfig
- the load config describing the data to retrievecallback
- the callback to invoke on success or failure
-
-