Class AsyncMiddleManServlet.ProxyResponseListener

java.lang.Object
org.eclipse.jetty.client.api.Response.Listener.Adapter
org.eclipse.jetty.proxy.AsyncMiddleManServlet.ProxyResponseListener
All Implemented Interfaces:
EventListener, Response.AsyncContentListener, Response.BeginListener, Response.CompleteListener, Response.ContentListener, Response.DemandedContentListener, Response.FailureListener, Response.HeaderListener, Response.HeadersListener, Response.Listener, Response.ResponseListener, Response.SuccessListener, Callback, Invocable
Enclosing class:
AsyncMiddleManServlet

protected class AsyncMiddleManServlet.ProxyResponseListener extends Response.Listener.Adapter implements Callback
  • Constructor Details

    • ProxyResponseListener

      protected ProxyResponseListener(jakarta.servlet.http.HttpServletRequest clientRequest, jakarta.servlet.http.HttpServletResponse proxyResponse)
  • Method Details

    • onBegin

      public void onBegin(Response serverResponse)
      Description copied from interface: Response.BeginListener
      Callback method invoked when the response line containing HTTP version, HTTP status code and reason has been received and parsed.

      This method is the best approximation to detect when the first bytes of the response arrived to the client.

      Specified by:
      onBegin in interface Response.BeginListener
      Specified by:
      onBegin in interface Response.Listener
      Parameters:
      serverResponse - the response containing the response line data
    • onHeaders

      public void onHeaders(Response serverResponse)
      Description copied from interface: Response.HeadersListener
      Callback method invoked when all the response headers have been received and parsed.
      Specified by:
      onHeaders in interface Response.HeadersListener
      Specified by:
      onHeaders in interface Response.Listener
      Parameters:
      serverResponse - the response containing the response line data and the headers
    • onContent

      public void onContent(Response serverResponse, ByteBuffer content, Callback callback)
      Description copied from interface: Response.AsyncContentListener
      Callback method invoked when the response content has been received, parsed and there is demand. The callback object should be succeeded to signal that the content buffer has been consumed and to demand more content.
      Specified by:
      onContent in interface Response.AsyncContentListener
      Specified by:
      onContent in interface Response.ContentListener
      Parameters:
      serverResponse - the response containing the response line data and the headers
      content - the content bytes received
      callback - the callback to call when the content is consumed and to demand more content
    • onSuccess

      public void onSuccess(Response serverResponse)
      Description copied from interface: Response.SuccessListener
      Callback method invoked when the whole response has been successfully received.
      Specified by:
      onSuccess in interface Response.Listener
      Specified by:
      onSuccess in interface Response.SuccessListener
      Parameters:
      serverResponse - the response containing the response line data and the headers
    • onComplete

      public void onComplete(Result result)
      Description copied from interface: Response.CompleteListener
      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.

      Specified by:
      onComplete in interface Response.CompleteListener
      Specified by:
      onComplete in interface Response.Listener
      Parameters:
      result - the result of the request / response exchange
    • succeeded

      public void succeeded()
      Description copied from interface: Callback

      Callback invoked when the operation completes.

      Specified by:
      succeeded in interface Callback
      See Also:
    • failed

      public void failed(Throwable failure)
      Description copied from interface: Callback

      Callback invoked when the operation fails.

      Specified by:
      failed in interface Callback
      Parameters:
      failure - the reason for the operation failure