Uses of Class
io.vertx.reactivex.core.http.HttpServerResponse
-
Packages that use HttpServerResponse Package Description io.vertx.reactivex.core.http io.vertx.reactivex.ext.web io.vertx.reactivex.openapi.validation -
-
Uses of HttpServerResponse in io.vertx.reactivex.core.http
Fields in io.vertx.reactivex.core.http with type parameters of type HttpServerResponse Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<HttpServerResponse>
HttpServerResponse. __TYPE_ARG
Methods in io.vertx.reactivex.core.http that return HttpServerResponse Modifier and Type Method Description 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)
LikeputHeader(java.lang.String, java.lang.String)
but using CharSequenceHttpServerResponse
HttpServerResponse. putHeader(CharSequence name, Iterable<CharSequence> values)
LikeputHeader(java.lang.String, java.lang.String)
but with CharSequence IterableHttpServerResponse
HttpServerResponse. putHeader(String name, Iterable<String> values)
LikeputHeader(java.lang.String, java.lang.String)
but providing multiple values via a String IterableHttpServerResponse
HttpServerResponse. putHeader(String name, String value)
Put an HTTP headerHttpServerResponse
HttpServerResponse. putTrailer(CharSequence name, CharSequence value)
LikeputTrailer(java.lang.String, java.lang.String)
but using CharSequenceHttpServerResponse
HttpServerResponse. putTrailer(CharSequence name, Iterable<CharSequence> value)
LikeputTrailer(java.lang.String, java.lang.String)
but with CharSequence IterableHttpServerResponse
HttpServerResponse. putTrailer(String name, Iterable<String> values)
LikeputTrailer(java.lang.String, java.lang.String)
but providing multiple values via a String IterableHttpServerResponse
HttpServerResponse. putTrailer(String name, String value)
Put an HTTP trailerHttpServerResponse
HttpServerRequest. response()
HttpServerResponse
HttpServerResponse. setChunked(boolean chunked)
Ifchunked
istrue
, 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 messageHttpServerResponse
HttpServerResponse. setStreamPriority(StreamPriority streamPriority)
Sets the priority of the associated streamHttpServerResponse
HttpServerResponse. setWriteQueueMaxSize(int maxSize)
-
Uses of HttpServerResponse in io.vertx.reactivex.ext.web
Methods in io.vertx.reactivex.ext.web that return HttpServerResponse Modifier and Type Method Description HttpServerResponse
RoutingContext. response()
-
Uses of HttpServerResponse in io.vertx.reactivex.openapi.validation
Methods in io.vertx.reactivex.openapi.validation with parameters of type HttpServerResponse Modifier and Type Method Description Completable
ValidatedResponse. rxSend(HttpServerResponse serverResponse)
Add all parameters from the validated response to the passed and send it.Future<Void>
ValidatedResponse. send(HttpServerResponse serverResponse)
Add all parameters from the validated response to the passed and send it.
-