Class InputStreamResponseListener

    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      Result await​(long timeout, java.util.concurrent.TimeUnit unit)
      Deprecated.
      Waits for the given timeout for the whole request/response cycle to be finished, then returns the corresponding result.
      Response get​(long timeout, java.util.concurrent.TimeUnit unit)
      Deprecated.
      Waits for the given timeout for the response to be available, then returns it.
      java.io.InputStream getInputStream()
      Deprecated.
      Returns an InputStream providing the response content bytes.
      void onComplete​(Result result)
      Deprecated.
      Callback method invoked when the request and the response have been processed, either successfully or not.
      void onContent​(Response response, java.nio.ByteBuffer content, Callback callback)
      Deprecated.
      Callback method invoked when the response content has been received, parsed and there is demand.
      void onFailure​(Response response, java.lang.Throwable failure)
      Deprecated.
      Callback method invoked when the response has failed in the process of being received
      void onHeaders​(Response response)
      Deprecated.
      Callback method invoked when all the response headers have been received and parsed.
      void onSuccess​(Response response)
      Deprecated.
      Callback method invoked when the whole response has been successfully received.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • InputStreamResponseListener

        public InputStreamResponseListener()
        Deprecated.
    • Method Detail

      • onHeaders

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

        public void onContent​(Response response,
                              java.nio.ByteBuffer content,
                              Callback callback)
        Deprecated.
        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.
        Parameters:
        response - 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 response)
        Deprecated.
        Description copied from interface: Response.SuccessListener
        Callback method invoked when the whole response has been successfully received.
        Parameters:
        response - the response containing the response line data and the headers
      • onFailure

        public void onFailure​(Response response,
                              java.lang.Throwable failure)
        Deprecated.
        Description copied from interface: Response.FailureListener
        Callback method invoked when the response has failed in the process of being received
        Parameters:
        response - the response containing data up to the point the failure happened
        failure - the failure happened
      • onComplete

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

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

        public Response get​(long timeout,
                            java.util.concurrent.TimeUnit unit)
                     throws java.lang.InterruptedException,
                            java.util.concurrent.TimeoutException,
                            java.util.concurrent.ExecutionException
        Deprecated.
        Waits for the given timeout for the response to be available, then returns it.

        The wait ends as soon as all the HTTP headers have been received, without waiting for the content. To wait for the whole content, see await(long, TimeUnit).

        Parameters:
        timeout - the time to wait
        unit - the timeout unit
        Returns:
        the response
        Throws:
        java.lang.InterruptedException - if the thread is interrupted
        java.util.concurrent.TimeoutException - if the timeout expires
        java.util.concurrent.ExecutionException - if a failure happened
      • await

        public Result await​(long timeout,
                            java.util.concurrent.TimeUnit unit)
                     throws java.lang.InterruptedException,
                            java.util.concurrent.TimeoutException
        Deprecated.
        Waits for the given timeout for the whole request/response cycle to be finished, then returns the corresponding result.

        Parameters:
        timeout - the time to wait
        unit - the timeout unit
        Returns:
        the result
        Throws:
        java.lang.InterruptedException - if the thread is interrupted
        java.util.concurrent.TimeoutException - if the timeout expires
        See Also:
        get(long, TimeUnit)
      • getInputStream

        public java.io.InputStream getInputStream()
        Deprecated.
        Returns an InputStream providing the response content bytes.

        The method may be invoked only once; subsequent invocations will return a closed InputStream.

        Returns:
        an input stream providing the response content