HttpServerResponse |
HttpServerResponse.addCookie(Cookie cookie) |
Add a cookie.
|
HttpServerResponse |
HttpServerResponse.bodyEndHandler(Handler<Void> handler) |
Provides a handler that will be called after the last part of the body is written to the wire.
|
HttpServerResponse |
HttpServerResponse.closeHandler(Handler<Void> handler) |
Set a close handler for the response, this is called when the underlying connection is closed and the response
was still using the connection.
|
HttpServerResponse |
HttpServerResponse.drainHandler(Handler<Void> handler) |
|
HttpServerResponse |
HttpServerResponse.endHandler(Handler<Void> handler) |
Set an end handler for the response.
|
HttpServerResponse |
HttpServerResponse.exceptionHandler(Handler<Throwable> handler) |
|
HttpServerResponse |
HttpServerResponse.headersEndHandler(Handler<Void> handler) |
Provide a handler that will be called just before the headers are written to the wire.
|
static HttpServerResponse |
HttpServerResponse.newInstance(HttpServerResponse arg) |
|
HttpServerResponse |
HttpServerResponse.putHeader(CharSequence name,
CharSequence value) |
|
HttpServerResponse |
HttpServerResponse.putHeader(CharSequence name,
Iterable<CharSequence> values) |
|
HttpServerResponse |
HttpServerResponse.putHeader(String name,
Iterable<String> values) |
|
HttpServerResponse |
HttpServerResponse.putHeader(String name,
String value) |
Put an HTTP header
|
HttpServerResponse |
HttpServerResponse.putTrailer(CharSequence name,
CharSequence value) |
|
HttpServerResponse |
HttpServerResponse.putTrailer(CharSequence name,
Iterable<CharSequence> value) |
|
HttpServerResponse |
HttpServerResponse.putTrailer(String name,
Iterable<String> values) |
|
HttpServerResponse |
HttpServerResponse.putTrailer(String name,
String value) |
Put an HTTP trailer
|
HttpServerResponse |
HttpServerRequest.response() |
|
HttpServerResponse |
HttpServerResponse.setChunked(boolean chunked) |
If chunked is true , this response will use HTTP chunked encoding, and each call to write to the body
will correspond to a new HTTP chunk sent on the wire.
|
HttpServerResponse |
HttpServerResponse.setStatusCode(int statusCode) |
Set the status code.
|
HttpServerResponse |
HttpServerResponse.setStatusMessage(String statusMessage) |
Set the status message
|
HttpServerResponse |
HttpServerResponse.setStreamPriority(StreamPriority streamPriority) |
Sets the priority of the associated stream
|
HttpServerResponse |
HttpServerResponse.setWriteQueueMaxSize(int maxSize) |
|