public class HttpClientResponseImpl extends Object implements HttpClientResponse
| Modifier and Type | Method and Description |
|---|---|
HttpClientResponse |
bodyHandler(Handler<Buffer> handler)
Convenience method for receiving the entire request body in one piece.
|
List<String> |
cookies() |
HttpClientResponse |
customFrameHandler(Handler<HttpFrame> handler)
Set an custom frame handler.
|
HttpClientResponse |
endHandler(Handler<Void> handler)
Set an end handler.
|
HttpClientResponse |
exceptionHandler(Handler<Throwable> handler)
Set an exception handler on the read stream.
|
HttpClientResponse |
fetch(long amount)
Fetch the specified
amount of elements. |
String |
getHeader(CharSequence headerName)
Return the first header value with the specified name
|
String |
getHeader(String headerName)
Return the first header value with the specified name
|
String |
getTrailer(String trailerName)
Return the first trailer value with the specified name
|
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
ReadStream, it sets the buffer in fetch mode and clears the actual demand. |
HttpClientRequestBase |
request() |
HttpClientResponse |
resume()
Resume reading, and sets the buffer in
flowing mode. |
int |
statusCode() |
String |
statusMessage() |
HttpClientResponse |
streamPriorityHandler(Handler<StreamPriority> handler)
Set an handler for stream priority changes.
|
MultiMap |
trailers() |
HttpVersion |
version() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitpipe, pipeTo, pipeTopublic HttpClientRequestBase request()
request in interface HttpClientResponsepublic HttpVersion version()
version in interface HttpClientResponsepublic int statusCode()
statusCode in interface HttpClientResponsepublic String statusMessage()
statusMessage in interface HttpClientResponsepublic MultiMap headers()
headers in interface HttpClientResponsepublic String getHeader(String headerName)
HttpClientResponsegetHeader in interface HttpClientResponseheaderName - the header namepublic String getHeader(CharSequence headerName)
HttpClientResponsegetHeader in interface HttpClientResponseheaderName - the header namepublic MultiMap trailers()
trailers in interface HttpClientResponsepublic String getTrailer(String trailerName)
HttpClientResponsegetTrailer in interface HttpClientResponsetrailerName - the trailer namepublic List<String> cookies()
cookies in interface HttpClientResponsepublic HttpClientResponse handler(Handler<Buffer> handler)
ReadStreamhandler in interface HttpClientResponsehandler in interface ReadStream<Buffer>public HttpClientResponse endHandler(Handler<Void> handler)
ReadStreamendHandler in interface HttpClientResponseendHandler in interface ReadStream<Buffer>public HttpClientResponse exceptionHandler(Handler<Throwable> handler)
ReadStreamexceptionHandler in interface HttpClientResponseexceptionHandler in interface ReadStream<Buffer>exceptionHandler in interface StreamBasehandler - the exception handlerpublic HttpClientResponse pause()
ReadStreamReadStream, it sets the buffer in fetch mode and clears the actual demand.
While it's paused, no data will be sent to the data handler.
pause in interface HttpClientResponsepause in interface ReadStream<Buffer>public HttpClientResponse resume()
ReadStreamflowing mode.
If the ReadStream has been paused, reading will recommence on it.resume in interface HttpClientResponseresume in interface ReadStream<Buffer>public HttpClientResponse fetch(long amount)
ReadStreamamount of elements. If the ReadStream has been paused, reading will
recommence with the specified amount of items, otherwise the specified amount will
be added to the current stream demand.fetch in interface HttpClientResponsefetch in interface ReadStream<Buffer>public HttpClientResponse bodyHandler(Handler<Buffer> handler)
HttpClientResponseThis saves you having to manually set a dataHandler and an endHandler 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 in interface HttpClientResponsehandler - This handler will be called after all the body has been receivedpublic HttpClientResponse customFrameHandler(Handler<HttpFrame> handler)
HttpClientResponsecustomFrameHandler in interface HttpClientResponsepublic NetSocket netSocket()
HttpClientResponseUSE THIS WITH CAUTION! Writing to the socket directly if you don't know what you're doing can easily break the HTTP protocol.
HTTP/1.1 pipe-lined requests cannot support net socket upgrade.
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.
netSocket in interface HttpClientResponsepublic HttpClientResponse streamPriorityHandler(Handler<StreamPriority> handler)
HttpClientResponsestreamPriorityHandler in interface HttpClientResponsehandler - the handler to be called when the stream priority changesCopyright © 2020. All rights reserved.