Package | Description |
---|---|
com.google.gwt.jsonp.client |
Classes for sending cross domain requests to an http server, potentially on a
different domain, via JSONP.
|
Modifier and Type | Method and Description |
---|---|
JsonpRequest<Boolean> |
JsonpRequestBuilder.requestBoolean(String url,
AsyncCallback<Boolean> callback) |
JsonpRequest<Double> |
JsonpRequestBuilder.requestDouble(String url,
AsyncCallback<Double> callback) |
JsonpRequest<Integer> |
JsonpRequestBuilder.requestInteger(String url,
AsyncCallback<Integer> callback) |
<T extends JavaScriptObject> |
JsonpRequestBuilder.requestObject(String url,
AsyncCallback<T> callback)
Sends a JSONP request and expects a JavaScript object as a result.
|
JsonpRequest<String> |
JsonpRequestBuilder.requestString(String url,
AsyncCallback<String> callback) |
JsonpRequest<Void> |
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.
|
Copyright © 2018. All rights reserved.