Uses of Class
com.google.gwt.jsonp.client.JsonpRequest
Package
Description
Classes for sending cross domain requests to an http server, potentially on a
different domain, via JSONP.
-
Uses of JsonpRequest 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.