Uses of Interface
com.google.gwt.http.client.RequestCallback
Packages that use RequestCallback
Package
Description
Provides the client-side classes and interfaces for making HTTP requests and
processing the associated responses.
Classes used in client-side implementation of remote procedure calls.
A package for managing client-server requests.
-
Uses of RequestCallback in com.google.gwt.http.client
Methods in com.google.gwt.http.client that return RequestCallbackModifier and TypeMethodDescriptionRequestBuilder.getCallback()Returns the callback previously set byRequestBuilder.setCallback(RequestCallback), ornullif no callback was set.Methods in com.google.gwt.http.client with parameters of type RequestCallbackModifier and TypeMethodDescription(package private) voidRequest.fireOnResponseReceived(RequestCallback callback) RequestBuilder.sendRequest(String requestData, RequestCallback callback) Sends an HTTP request based on the current builder configuration with the specified data and callback.voidRequestBuilder.setCallback(RequestCallback callback) Sets the response handler for this request.Constructors in com.google.gwt.http.client with parameters of type RequestCallbackModifierConstructorDescription(package private)Request(XMLHttpRequest xmlHttpRequest, int timeoutMillis, RequestCallback callback) Constructs an instance of the Request object. -
Uses of RequestCallback in com.google.gwt.user.client.rpc
Methods in com.google.gwt.user.client.rpc with parameters of type RequestCallbackModifier and TypeMethodDescriptionprotected voidRpcRequestBuilder.doSetCallback(RequestBuilder rb, RequestCallback callback) final RpcRequestBuilderRpcRequestBuilder.setCallback(RequestCallback callback) Sets the RequestCallback to be used by the RequestBuilder. -
Uses of RequestCallback in com.google.web.bindery.requestfactory.gwt.client
Methods in com.google.web.bindery.requestfactory.gwt.client that return RequestCallbackModifier and TypeMethodDescriptionprotected RequestCallbackDefaultRequestTransport.createRequestCallback(RequestTransport.TransportReceiver receiver) Creates a RequestCallback that maps the HTTP response onto theTransportReceiverinterface.