Interface QueueSentCallback


public interface QueueSentCallback
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    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

      void 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).

      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 of RPCRequest's passed to this method is strictly read-only.

      Parameters:
      response - array of requests sent