Uses of Class
io.vertx.mutiny.core.http.HttpServerResponse
Packages that use HttpServerResponse
Package
Description
-
Uses of HttpServerResponse in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type HttpServerResponseModifier and TypeFieldDescriptionstatic final TypeArg<HttpServerResponse>HttpServerResponse.__TYPE_ARGMethods in io.vertx.mutiny.core.http that return HttpServerResponseModifier and TypeMethodDescriptionHttpServerResponse.bodyEndHandler(Runnable handler) HttpServerResponse.closeHandler(Runnable handler) HttpServerResponse.drainHandler(Runnable handler) HttpServerResponse.endHandler(Runnable handler) HttpServerResponse.exceptionHandler(Consumer<Throwable> handler) HttpServerResponse.headersEndHandler(Runnable handler) static HttpServerResponseHttpServerResponse.newInstance(io.vertx.core.http.HttpServerResponse arg) HttpServerResponse.pushAndAwait(io.vertx.core.http.HttpMethod method, HostAndPort host, String path) Blocking variant ofpush(HttpMethod,io.vertx.mutiny.core.net.HostAndPort,String).HttpServerResponse.pushAndAwait(io.vertx.core.http.HttpMethod method, HostAndPort authority, String path, MultiMap headers) HttpServerResponse.pushAndAwait(io.vertx.core.http.HttpMethod method, String path) Blocking variant ofpush(HttpMethod,String).HttpServerResponse.pushAndAwait(io.vertx.core.http.HttpMethod method, String path, MultiMap headers) Blocking variant ofpush(HttpMethod,String,io.vertx.mutiny.core.MultiMap).HttpServerResponse.pushAndAwait(io.vertx.core.http.HttpMethod method, String host, String path) Deprecated.HttpServerResponse.pushAndAwait(io.vertx.core.http.HttpMethod method, String host, String path, MultiMap headers) Deprecated.HttpServerResponse.pushAndForget(io.vertx.core.http.HttpMethod method, HostAndPort host, String path) Variant ofpush(HttpMethod,io.vertx.mutiny.core.net.HostAndPort,String)that ignores the result of the operation.HttpServerResponse.pushAndForget(io.vertx.core.http.HttpMethod method, HostAndPort authority, String path, MultiMap headers) Variant ofpush(HttpMethod,io.vertx.mutiny.core.net.HostAndPort,String,io.vertx.mutiny.core.MultiMap)that ignores the result of the operation.HttpServerResponse.pushAndForget(io.vertx.core.http.HttpMethod method, String path) Variant ofpush(HttpMethod,String)that ignores the result of the operation.HttpServerResponse.pushAndForget(io.vertx.core.http.HttpMethod method, String path, MultiMap headers) Variant ofpush(HttpMethod,String,io.vertx.mutiny.core.MultiMap)that ignores the result of the operation.HttpServerResponse.pushAndForget(io.vertx.core.http.HttpMethod method, String host, String path) Deprecated.instead use#push(HttpMethod, HostAndPort, String, Handler)HttpServerResponse.pushAndForget(io.vertx.core.http.HttpMethod method, String host, String path, MultiMap headers) Deprecated.HttpServerResponse.putHeader(CharSequence name, CharSequence value) HttpServerResponse.putHeader(CharSequence name, Iterable<CharSequence> values) HttpServerResponse.putTrailer(CharSequence name, CharSequence value) HttpServerResponse.putTrailer(CharSequence name, Iterable<CharSequence> value) HttpServerResponse.putTrailer(String name, Iterable<String> values) HttpServerResponse.putTrailer(String name, String value) HttpServerRequest.response()HttpServerResponse.sendFileAndForget(String filename) Variant ofsendFile(String)that ignores the result of the operation.HttpServerResponse.sendFileAndForget(String filename, long offset) Variant ofsendFile(String,long)that ignores the result of the operation.HttpServerResponse.sendFileAndForget(String filename, long offset, long length) Variant ofsendFile(String,long,long)that ignores the result of the operation.HttpServerResponse.setChunked(boolean chunked) HttpServerResponse.setStatusCode(int statusCode) HttpServerResponse.setStatusMessage(String statusMessage) HttpServerResponse.setStreamPriority(io.vertx.core.http.StreamPriority streamPriority) HttpServerResponse.setWriteQueueMaxSize(int maxSize) HttpServerResponse.writeContinue()HttpServerResponse.writeCustomFrame(int type, int flags, Buffer payload) HttpServerResponse.writeCustomFrame(HttpFrame frame) Methods in io.vertx.mutiny.core.http that return types with arguments of type HttpServerResponseModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<HttpServerResponse>HttpServerResponse.push(io.vertx.core.http.HttpMethod method, HostAndPort host, String path) Likepush(io.vertx.core.http.HttpMethod, java.lang.String, java.lang.String)with no headers.io.smallrye.mutiny.Uni<HttpServerResponse>HttpServerResponse.push(io.vertx.core.http.HttpMethod method, HostAndPort authority, String path, MultiMap headers) Push a response to the client.io.smallrye.mutiny.Uni<HttpServerResponse>Likepush(io.vertx.core.http.HttpMethod, java.lang.String, java.lang.String)with the host copied from the current request.io.smallrye.mutiny.Uni<HttpServerResponse>Likepush(io.vertx.core.http.HttpMethod, java.lang.String, java.lang.String)with the host copied from the current request.io.smallrye.mutiny.Uni<HttpServerResponse>Deprecated.instead use#push(HttpMethod, HostAndPort, String, Handler)io.smallrye.mutiny.Uni<HttpServerResponse>HttpServerResponse.push(io.vertx.core.http.HttpMethod method, String host, String path, MultiMap headers) Deprecated. -
Uses of HttpServerResponse in io.vertx.mutiny.ext.web
Methods in io.vertx.mutiny.ext.web that return HttpServerResponse -
Uses of HttpServerResponse in io.vertx.mutiny.openapi.validation
Methods in io.vertx.mutiny.openapi.validation with parameters of type HttpServerResponseModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Void>ValidatedResponse.send(HttpServerResponse serverResponse) Add all parameters from the validated response to the passed and send it.ValidatedResponse.sendAndAwait(HttpServerResponse serverResponse) Blocking variant ofValidatedResponse.send(io.vertx.mutiny.core.http.HttpServerResponse).voidValidatedResponse.sendAndForget(HttpServerResponse serverResponse) Variant ofValidatedResponse.send(io.vertx.mutiny.core.http.HttpServerResponse)that ignores the result of the operation.
#push(HttpMethod, HostAndPort, String, Handler)