Package | Description |
---|---|
com.google.gwt.user.client.rpc |
Classes used in client-side implementation of remote procedure calls.
|
com.google.web.bindery.requestfactory.gwt.client |
A package for managing client-server requests.
|
Modifier and Type | Method and Description |
---|---|
protected RequestBuilder |
RpcRequestBuilder.doCreate(java.lang.String serviceEntryPoint)
Called by
RpcRequestBuilder.create(java.lang.String) to instantiate the RequestBuilder object. |
RequestBuilder |
RpcRequestBuilder.finish()
This method must be called to return the RequestBuilder that the RPC
request will be made with.
|
Modifier and Type | Method and Description |
---|---|
protected void |
RpcRequestBuilder.doFinish(RequestBuilder rb)
Called by
RpcRequestBuilder.finish() prior to returning the RequestBuilder to the
caller. |
protected void |
RpcRequestBuilder.doSetCallback(RequestBuilder rb,
RequestCallback callback)
|
protected void |
RpcRequestBuilder.doSetContentType(RequestBuilder rb,
java.lang.String contentType)
|
protected void |
RpcRequestBuilder.doSetRequestData(RequestBuilder rb,
java.lang.String data)
|
protected void |
RpcRequestBuilder.doSetRequestId(RequestBuilder rb,
int id)
Called by
RpcRequestBuilder.setRequestId(int) . |
Modifier and Type | Method and Description |
---|---|
protected RequestBuilder |
DefaultRequestTransport.createRequestBuilder()
Constructs a
RequestBuilder using the POST
method sent to the URL returned from DefaultRequestTransport.getRequestUrl() . |
Modifier and Type | Method and Description |
---|---|
protected void |
DefaultRequestTransport.configureRequestBuilder(RequestBuilder builder)
Override to change the headers sent in the HTTP request.
|