Package com.smartgwt.client.rpc
Interface QueueSentCallback
public interface QueueSentCallback
-
Method Summary
Modifier and TypeMethodDescriptionvoid
queueSent
(RPCRequest... response) This method is called by the RPCManager every time it sends a queue of requests to the server (note that if you not using queuing, the system simply sends queues containing just one request, so this API is valid regardless).
-
Method Details
-
queueSent
This method is called by the RPCManager every time it sends a queue of requests to the server (note that if you not using queuing, the system simply sends queues containing just one request, so this API is valid regardless).
It is intended to be used by user code that needs to be notified when SmartGWT sends requests to the server. Note that the list ofRPCRequest
's passed to this method is strictly read-only.- Parameters:
response
- array of requests sent
-