Uses of Class
com.google.gwt.http.client.Request
-
Packages that use Request Package Description com.google.gwt.http.client Provides the client-side classes and interfaces for making HTTP requests and processing the associated responses. -
-
Uses of Request in com.google.gwt.http.client
Methods in com.google.gwt.http.client that return Request Modifier and Type Method Description Request
RequestTimeoutException. getRequest()
Returns theRequest
instance which timed out.Request
RequestBuilder. send()
Sends an HTTP request based on the current builder configuration.Request
RequestBuilder. sendRequest(java.lang.String requestData, RequestCallback callback)
Sends an HTTP request based on the current builder configuration with the specified data and callback.Methods in com.google.gwt.http.client with parameters of type Request Modifier and Type Method Description void
RequestCallback. onError(Request request, java.lang.Throwable exception)
Called when aRequest
does not complete normally.void
RequestCallback. onResponseReceived(Request request, Response response)
Called when a pendingRequest
completes normally.Constructors in com.google.gwt.http.client with parameters of type Request Constructor Description RequestTimeoutException(Request request, int timeoutMillis)
Constructs a timeout exception for the givenRequest
.
-