Package | Description |
---|---|
com.google.gwt.jsonp.client |
Classes for sending cross domain requests to an http server, potentially on a
different domain, via JSONP.
|
com.google.gwt.logging.shared |
Shared classes for java.util.logging support in GWT.
|
com.google.gwt.user.client.rpc |
Classes used in client-side implementation of remote procedure calls.
|
com.google.gwt.user.client.rpc.impl |
Modifier and Type | Method and Description |
---|---|
AsyncCallback<T> |
JsonpRequest.getCallback() |
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.
|
Modifier and Type | Method and Description |
---|---|
void |
RemoteLoggingServiceAsync.logOnServer(LogRecord record,
AsyncCallback<String> callback) |
Modifier and Type | Method and Description |
---|---|
void |
XsrfTokenServiceAsync.getNewXsrfToken(AsyncCallback<XsrfToken> asyncCallback) |
Modifier and Type | Method and Description |
---|---|
protected <T> RequestCallback |
RemoteServiceProxy.doCreateRequestCallback(RequestCallbackAdapter.ResponseReader responseReader,
String methodName,
RpcStatsContext statsContext,
AsyncCallback<T> callback) |
protected <T> Request |
RemoteServiceProxy.doInvoke(RequestCallbackAdapter.ResponseReader responseReader,
String methodName,
RpcStatsContext statsContext,
String requestData,
AsyncCallback<T> callback)
Performs a remote service method invocation.
|
protected <T> RequestBuilder |
RemoteServiceProxy.doPrepareRequestBuilder(RequestCallbackAdapter.ResponseReader responseReader,
String methodName,
RpcStatsContext statsContext,
String requestData,
AsyncCallback<T> callback)
Configures a RequestBuilder to send an RPC request when the RequestBuilder
is intended to be returned through the asynchronous proxy interface.
|
Request |
RemoteServiceProxy.ServiceHelper.finish(AsyncCallback callback,
RequestCallbackAdapter.ResponseReader responseHeader)
Finishes the serialization.
|
RequestBuilder |
RemoteServiceProxy.ServiceHelper.finishForRequestBuilder(AsyncCallback callback,
RequestCallbackAdapter.ResponseReader responseHeader)
Finishes the serialization and return a RequestBuilder.
|
Constructor and Description |
---|
FailingRequestBuilder(Throwable cause,
AsyncCallback<?> rpcCallback) |
RequestCallbackAdapter(SerializationStreamFactory streamFactory,
String methodName,
RpcStatsContext statsContext,
AsyncCallback<T> callback,
RequestCallbackAdapter.ResponseReader responseReader) |
RequestCallbackAdapter(SerializationStreamFactory streamFactory,
String methodName,
RpcStatsContext statsContext,
AsyncCallback<T> callback,
RpcTokenExceptionHandler tokenExceptionHandler,
RequestCallbackAdapter.ResponseReader responseReader) |
Copyright © 2018. All rights reserved.