public interface HttpClientResponse extends ReadStream<Buffer>
Vert.x provides you with one of these via the handler that was provided when creating the HttpClientRequest
or that was set on the HttpClientRequest
instance.
It implements ReadStream
so it can be used with
Pipe
to pipe data with flow control.
Modifier and Type | Method and Description |
---|---|
Future<Buffer> |
body()
Convenience method for receiving the entire request body in one piece.
|
default HttpClientResponse |
body(Handler<AsyncResult<Buffer>> handler)
Same as
body() but with an handler called when the operation completes |
default HttpClientResponse |
bodyHandler(Handler<Buffer> bodyHandler)
Convenience method for receiving the entire request body in one piece.
|
List<String> |
cookies() |
HttpClientResponse |
customFrameHandler(Handler<HttpFrame> handler)
Set an custom frame handler.
|
Future<Void> |
end()
Returns a future signaling when the response has been fully received successfully or failed.
|
default void |
end(Handler<AsyncResult<Void>> handler)
Same as
end() but with an handler called when the operation completes |
HttpClientResponse |
endHandler(Handler<Void> endHandler)
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() |
HttpClientResponse |
pause()
Pause the
ReadStream , it sets the buffer in fetch mode and clears the actual demand. |
HttpClientRequest |
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() |
pipe, pipeTo, pipeTo
HttpClientResponse fetch(long amount)
ReadStream
amount
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 ReadStream<Buffer>
HttpClientResponse resume()
ReadStream
flowing
mode.
If the ReadStream
has been paused, reading will recommence on it.resume
in interface ReadStream<Buffer>
HttpClientResponse exceptionHandler(Handler<Throwable> handler)
ReadStream
exceptionHandler
in interface ReadStream<Buffer>
exceptionHandler
in interface StreamBase
handler
- the exception handlerHttpClientResponse handler(Handler<Buffer> handler)
ReadStream
handler
in interface ReadStream<Buffer>
HttpClientResponse pause()
ReadStream
ReadStream
, 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 ReadStream<Buffer>
HttpClientResponse endHandler(Handler<Void> endHandler)
ReadStream
endHandler
in interface ReadStream<Buffer>
NetSocket netSocket()
NetSocket
facade to interact with the HTTP client response.HttpVersion version()
int statusCode()
String statusMessage()
MultiMap headers()
String getHeader(String headerName)
headerName
- the header nameString getHeader(CharSequence headerName)
headerName
- the header nameString getTrailer(String trailerName)
trailerName
- the trailer nameMultiMap trailers()
default HttpClientResponse bodyHandler(Handler<Buffer> bodyHandler)
This 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
- This handler will be called after all the body has been receiveddefault HttpClientResponse body(Handler<AsyncResult<Buffer>> handler)
body()
but with an handler
called when the operation completesFuture<Buffer> body()
This 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.
default void end(Handler<AsyncResult<Void>> handler)
end()
but with an handler
called when the operation completesFuture<Void> end()
HttpClientResponse customFrameHandler(Handler<HttpFrame> handler)
HttpClientRequest request()
HttpClientResponse streamPriorityHandler(Handler<StreamPriority> handler)
handler
- the handler to be called when the stream priority changesCopyright © 2021 Eclipse. All rights reserved.