Interface Response.CompleteListener

All Superinterfaces:
EventListener, Response.ResponseListener
All Known Subinterfaces:
Response.Listener
All Known Implementing Classes:
BufferingResponseListener, FutureResponseListener, InputStreamResponseListener, RedirectProtocolHandler, Response.Listener.Adapter, TimeoutCompleteListener
Enclosing interface:
Response

@Deprecated(since="2021-05-27") public static interface Response.CompleteListener extends Response.ResponseListener
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
Listener for the request and response completed event.
  • Method Summary

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

    • onComplete

      void onComplete(Result result)
      Deprecated.
      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