Interface Response.CompleteListener

All Superinterfaces:
EventListener, Response.ResponseListener
All Known Subinterfaces:
Response.Listener
All Known Implementing Classes:
AsyncMiddleManServlet.ProxyResponseListener, BufferingResponseListener, ContinueProtocolHandler.ContinueListener, CoreClientUpgradeRequest, FutureResponseListener, InputStreamResponseListener, JavaxClientUpgradeRequest, JettyClientUpgradeRequest, ProxyServlet.ProxyResponseListener, RedirectProtocolHandler, Response.Listener.Adapter, TimeoutCompleteListener
Enclosing interface:
Response

public static interface Response.CompleteListener extends Response.ResponseListener
Listener for the request and response completed event.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Callback method invoked when the request and the response have been processed, either successfully or not.
  • Method Details

    • onComplete

      void onComplete(Result result)
      Callback method invoked when the request and the response have been processed, either successfully or not.

      The result parameter contains the request, the response, and eventual failures.

      Requests may complete after response, for example in case of big uploads that are discarded or read asynchronously by the server. This method is always invoked after Response.SuccessListener.onSuccess(Response) or Response.FailureListener.onFailure(Response, Throwable), and only when request indicates that it is completed.

      Parameters:
      result - the result of the request / response exchange