| |
|
| java.lang.Object org.directwebremoting.extend.Calls
Calls | public class Calls implements Iterable<Call>(Code) | | The request made by the browser which consists of a number of function call
requests and some associated information like the request mode (XHR or
iframe).
author: Joe Walker [joe at getahead dot ltd dot uk] |
calls | protected List<Call> calls(Code) | | The collection of Calls that we should execute
|
addCall | public void addCall(Call call)(Code) | | Add a call to the collection of calls we are about to make
Parameters: call - The call to add |
getBatchId | public String getBatchId()(Code) | | Returns the batchId. |
getCall | public Call getCall(int index)(Code) | | Parameters: index - The index (starts at 0) of the call to fetch Returns the calls. |
getCallCount | public int getCallCount()(Code) | | How many calls are there is this request
The total number of calls |
setBatchId | public void setBatchId(String batchId)(Code) | | Parameters: batchId - The batchId to set. |
|
|
|