public interface HttpClientResponse extends ReadStream<Buffer>
Represents a client-side HTTP response.<p>
An instance is provided to the user via a Handler
instance that was specified when one of the HTTP method operations, or the
generic HttpClient#request(String, String, io.vertx.core.Handler)
method was called on an instance of HttpClient
.<p>
It implements ReadStream
so it can be used with
Pump
to pump data with flow control.<p>
Instances of this class are not thread-safe.<p>
Modifier and Type | Method and Description |
---|---|
HttpClientResponse |
bodyHandler(Handler<Buffer> bodyHandler)
Convenience method for receiving the entire request body in one piece.
|
List<String> |
cookies() |
HttpClientResponse |
endHandler(Handler<Void> endHandler)
Set an end handler.
|
HttpClientResponse |
exceptionHandler(Handler<Throwable> handler)
Set an exception handler.
|
HttpClientResponse |
handler(Handler<Buffer> handler)
Set a data handler.
|
MultiMap |
headers() |
NetSocket |
netSocket()
Get a net socket for the underlying connection of this request.
|
HttpClientResponse |
pause()
Pause the
ReadSupport . |
HttpClientResponse |
resume()
Resume reading.
|
int |
statusCode()
The HTTP status code of the response
|
String |
statusMessage()
The HTTP status message of the response
|
MultiMap |
trailers() |
HttpClientResponse resume()
ReadStream
Resume reading. If the ReadSupport
has been paused, reading will recommence on it.
resume
in interface ReadStream<Buffer>
HttpClientResponse exceptionHandler(Handler<Throwable> handler)
StreamBase
Set an exception handler.
exceptionHandler
in interface ReadStream<Buffer>
exceptionHandler
in interface StreamBase
HttpClientResponse handler(Handler<Buffer> handler)
ReadStream
Set a data handler. As data is read, the handler will be called with the data.
handler
in interface ReadStream<Buffer>
HttpClientResponse pause()
ReadStream
Pause the ReadSupport
. While it’s paused, no data will be sent to the dataHandler
pause
in interface ReadStream<Buffer>
HttpClientResponse endHandler(Handler<Void> endHandler)
ReadStream
Set an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.
endHandler
in interface ReadStream<Buffer>
int statusCode()
The HTTP status code of the response
String statusMessage()
The HTTP status message of the response
MultiMap headers()
MultiMap trailers()
HttpClientResponse bodyHandler(Handler<Buffer> bodyHandler)
Convenience method for receiving the entire request body in one piece. This saves the user having to manually set a data and end handler and append the chunks of the body until the whole body received. Don’t use this if your request body is large - you could potentially run out of RAM.
bodyHandler
- This handler will be called after all the body has been receivedNetSocket netSocket()
Get a net socket for the underlying connection of this request. USE THIS WITH CAUTION! Writing to the socket directly if you don’t know what you’re doing can easily break the HTTP protocol
One valid use-case for calling this is to receive the NetSocket
after a HTTP CONNECT was issued to the
remote peer and it responded with a status code of 200.
Copyright © 2014. All Rights Reserved.