Uses of Interface
com.google.gwt.user.client.rpc.AsyncCallback
Package
Description
Classes for sending cross domain requests to an http server, potentially on a
different domain, via JSONP.
Log handlers and related classes for java.util.logging support in GWT.
Shared classes for java.util.logging support in GWT.
Classes used in client-side implementation of remote procedure calls.
-
Uses of AsyncCallback in com.google.gwt.jsonp.client
Modifier and TypeMethodDescriptionJsonpRequestBuilder.requestBoolean
(String url, AsyncCallback<Boolean> callback) JsonpRequestBuilder.requestDouble
(String url, AsyncCallback<Double> callback) JsonpRequestBuilder.requestInteger
(String url, AsyncCallback<Integer> callback) <T extends JavaScriptObject>
JsonpRequest<T> JsonpRequestBuilder.requestObject
(String url, AsyncCallback<T> callback) Sends a JSONP request and expects a JavaScript object as a result.JsonpRequestBuilder.requestString
(String url, AsyncCallback<String> callback) JsonpRequestBuilder.send
(String url, AsyncCallback<Void> callback) Sends a JSONP request, does not expect any result, but still allows to be notified when the request has been executed on the server.ModifierConstructorDescription(package private)
JsonpRequest
(AsyncCallback<T> callback, int timeout, boolean expectInteger, String callbackParam, String failureCallbackParam) Create a new JSONP request.(package private)
JsonpRequest
(AsyncCallback<T> callback, int timeout, boolean expectInteger, String callbackParam, String failureCallbackParam, String id) Create a new JSONP request with a hardcoded id. -
Uses of AsyncCallback in com.google.gwt.logging.client
-
Uses of AsyncCallback in com.google.gwt.user.client.rpc
Modifier and TypeMethodDescriptionvoid
XsrfTokenServiceAsync.getNewXsrfToken
(AsyncCallback<XsrfToken> asyncCallback)