Uses of Class
io.vertx.mutiny.core.MultiMap
-
-
Uses of MultiMap in io.vertx.mutiny.core
Fields in io.vertx.mutiny.core with type parameters of type MultiMap Modifier and Type Field Description static TypeArg<MultiMap>
MultiMap. __TYPE_ARG
Methods in io.vertx.mutiny.core that return MultiMap Modifier and Type Method Description MultiMap
MultiMap. add(CharSequence name, CharSequence value)
MultiMap
MultiMap. add(CharSequence name, Iterable<CharSequence> values)
MultiMap
MultiMap. add(String name, Iterable<String> values)
MultiMap
MultiMap. add(String name, String value)
MultiMap
MultiMap. addAll(MultiMap map)
MultiMap
MultiMap. addAll(Map<String,String> headers)
static MultiMap
MultiMap. caseInsensitiveMultiMap()
MultiMap
MultiMap. clear()
static MultiMap
MultiMap. newInstance(io.vertx.core.MultiMap arg)
MultiMap
MultiMap. remove(CharSequence name)
MultiMap
MultiMap. remove(String name)
MultiMap
MultiMap. set(CharSequence name, CharSequence value)
MultiMap
MultiMap. set(CharSequence name, Iterable<CharSequence> values)
MultiMap
MultiMap. set(String name, Iterable<String> values)
MultiMap
MultiMap. set(String name, String value)
MultiMap
MultiMap. setAll(MultiMap map)
MultiMap
MultiMap. setAll(Map<String,String> headers)
Methods in io.vertx.mutiny.core with parameters of type MultiMap Modifier and Type Method Description MultiMap
MultiMap. addAll(MultiMap map)
MultiMap
MultiMap. setAll(MultiMap map)
-
Uses of MultiMap in io.vertx.mutiny.core.eventbus
Methods in io.vertx.mutiny.core.eventbus that return MultiMap Modifier and Type Method Description MultiMap
Message. headers()
-
Uses of MultiMap in io.vertx.mutiny.core.http
Methods in io.vertx.mutiny.core.http that return MultiMap Modifier and Type Method Description MultiMap
HttpServerRequest. formAttributes()
MultiMap
ClientWebSocket. headers()
MultiMap
HttpClientRequest. headers()
MultiMap
HttpClientResponse. headers()
static MultiMap
HttpHeaders. headers()
MultiMap
HttpResponseHead. headers()
MultiMap
HttpServerRequest. headers()
MultiMap
HttpServerResponse. headers()
MultiMap
ServerWebSocket. headers()
MultiMap
ServerWebSocketHandshake. headers()
MultiMap
WebSocket. headers()
MultiMap
WebSocketBase. headers()
MultiMap
HttpServerRequest. params()
MultiMap
HttpServerRequest. params(boolean semicolonIsNormalChar)
static MultiMap
HttpHeaders. set(CharSequence name, CharSequence value)
static MultiMap
HttpHeaders. set(String name, String value)
MultiMap
HttpClientResponse. trailers()
MultiMap
HttpServerResponse. trailers()
Methods in io.vertx.mutiny.core.http with parameters of type MultiMap Modifier and Type Method Description io.smallrye.mutiny.Uni<HttpServerResponse>
HttpServerResponse. push(io.vertx.core.http.HttpMethod method, HostAndPort authority, String path, MultiMap headers)
Same asHttpServerResponse.push(io.vertx.core.http.HttpMethod, java.lang.String, java.lang.String)
but with anhandler
called when the operation completesio.smallrye.mutiny.Uni<HttpServerResponse>
HttpServerResponse. push(io.vertx.core.http.HttpMethod method, String path, MultiMap headers)
LikeHttpServerResponse.push(io.vertx.core.http.HttpMethod, java.lang.String, java.lang.String)
with the host copied from the current request.io.smallrye.mutiny.Uni<HttpServerResponse>
HttpServerResponse. push(io.vertx.core.http.HttpMethod method, String host, String path, MultiMap headers)
Push a response to the client.HttpServerResponse
HttpServerResponse. pushAndAwait(io.vertx.core.http.HttpMethod method, HostAndPort authority, String path, MultiMap headers)
HttpServerResponse
HttpServerResponse. pushAndAwait(io.vertx.core.http.HttpMethod method, String path, MultiMap headers)
Blocking variant ofHttpServerResponse.push(HttpMethod,String,io.vertx.mutiny.core.MultiMap)
.HttpServerResponse
HttpServerResponse. pushAndAwait(io.vertx.core.http.HttpMethod method, String host, String path, MultiMap headers)
Blocking variant ofHttpServerResponse.push(HttpMethod,String,String,io.vertx.mutiny.core.MultiMap)
.HttpServerResponse
HttpServerResponse. pushAndForget(io.vertx.core.http.HttpMethod method, HostAndPort authority, String path, MultiMap headers)
Variant ofHttpServerResponse.push(HttpMethod,io.vertx.mutiny.core.net.HostAndPort,String,io.vertx.mutiny.core.MultiMap)
that ignores the result of the operation.HttpServerResponse
HttpServerResponse. pushAndForget(io.vertx.core.http.HttpMethod method, String path, MultiMap headers)
Variant ofHttpServerResponse.push(HttpMethod,String,io.vertx.mutiny.core.MultiMap)
that ignores the result of the operation.HttpServerResponse
HttpServerResponse. pushAndForget(io.vertx.core.http.HttpMethod method, String host, String path, MultiMap headers)
Variant ofHttpServerResponse.push(HttpMethod,String,String,io.vertx.mutiny.core.MultiMap)
that ignores the result of the operation.io.smallrye.mutiny.Uni<WebSocket>
HttpClient. webSocketAbs(String url, MultiMap headers, io.vertx.core.http.WebsocketVersion version, List<String> subProtocols)
Deprecated.instead useWebSocketClient#connect(WebSocketConnectOptions, Handler)
WebSocket
HttpClient. webSocketAbsAndAwait(String url, MultiMap headers, io.vertx.core.http.WebsocketVersion version, List<String> subProtocols)
Deprecated.instead useWebSocketClient#connect(WebSocketConnectOptions, Handler)
void
HttpClient. webSocketAbsAndForget(String url, MultiMap headers, io.vertx.core.http.WebsocketVersion version, List<String> subProtocols)
Deprecated.instead useWebSocketClient#connect(WebSocketConnectOptions, Handler)
io.smallrye.mutiny.Uni<Void>
HttpServerResponse. writeEarlyHints(MultiMap headers)
Same asHttpServerResponse.writeEarlyHints(io.vertx.mutiny.core.MultiMap)
but with anhandler
called when the operation completesVoid
HttpServerResponse. writeEarlyHintsAndAwait(MultiMap headers)
Blocking variant ofHttpServerResponse.writeEarlyHints(io.vertx.mutiny.core.MultiMap)
.void
HttpServerResponse. writeEarlyHintsAndForget(MultiMap headers)
Variant ofHttpServerResponse.writeEarlyHints(io.vertx.mutiny.core.MultiMap)
that ignores the result of the operation.Method parameters in io.vertx.mutiny.core.http with type arguments of type MultiMap Modifier and Type Method Description HttpClientRequest
HttpClientRequest. earlyHintsHandler(Consumer<MultiMap> handler)
-
Uses of MultiMap in io.vertx.mutiny.ext.auth.authorization
Methods in io.vertx.mutiny.ext.auth.authorization that return MultiMap Modifier and Type Method Description MultiMap
AuthorizationContext. variables()
-
Uses of MultiMap in io.vertx.mutiny.ext.mail
Methods in io.vertx.mutiny.ext.mail that return MultiMap Modifier and Type Method Description MultiMap
MailAttachment. getHeaders()
Methods in io.vertx.mutiny.ext.mail with parameters of type MultiMap Modifier and Type Method Description MailAttachment
MailAttachment. setHeaders(MultiMap headers)
-
Uses of MultiMap in io.vertx.mutiny.ext.web
Methods in io.vertx.mutiny.ext.web that return MultiMap Modifier and Type Method Description MultiMap
RoutingContext. queryParams()
MultiMap
RoutingContext. queryParams(Charset encoding)
-
Uses of MultiMap in io.vertx.mutiny.ext.web.client
Methods in io.vertx.mutiny.ext.web.client that return MultiMap Modifier and Type Method Description MultiMap
HttpRequest. headers()
MultiMap
HttpResponse. headers()
MultiMap
HttpRequest. queryParams()
MultiMap
HttpResponse. trailers()
Methods in io.vertx.mutiny.ext.web.client with parameters of type MultiMap Modifier and Type Method Description HttpRequest<T>
HttpRequest. putHeaders(MultiMap headers)
io.smallrye.mutiny.Uni<HttpResponse<T>>
HttpRequest. sendForm(MultiMap body)
LikeHttpRequest.send()
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.io.smallrye.mutiny.Uni<HttpResponse<T>>
HttpRequest. sendForm(MultiMap body, String charset)
LikeHttpRequest.send()
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.HttpResponse<T>
HttpRequest. sendFormAndAwait(MultiMap body)
Blocking variant ofHttpRequest.sendForm(io.vertx.mutiny.core.MultiMap)
.HttpResponse<T>
HttpRequest. sendFormAndAwait(MultiMap body, String charset)
Blocking variant ofHttpRequest.sendForm(io.vertx.mutiny.core.MultiMap,String)
.void
HttpRequest. sendFormAndForget(MultiMap body)
Variant ofHttpRequest.sendForm(io.vertx.mutiny.core.MultiMap)
that ignores the result of the operation.void
HttpRequest. sendFormAndForget(MultiMap body, String charset)
Variant ofHttpRequest.sendForm(io.vertx.mutiny.core.MultiMap,String)
that ignores the result of the operation. -
Uses of MultiMap in io.vertx.mutiny.ext.web.handler.graphql
Method parameters in io.vertx.mutiny.ext.web.handler.graphql with type arguments of type MultiMap Modifier and Type Method Description GraphiQLHandlerBuilder
GraphiQLHandlerBuilder. addingHeaders(Function<RoutingContext,MultiMap> factory)
GraphiQLHandler
GraphiQLHandler. graphiQLRequestHeaders(Function<RoutingContext,MultiMap> factory)
Deprecated.as of 4.5.1, useGraphiQLHandler.builder(Vertx)
instead -
Uses of MultiMap in io.vertx.mutiny.ext.web.handler.sockjs
Methods in io.vertx.mutiny.ext.web.handler.sockjs that return MultiMap Modifier and Type Method Description MultiMap
SockJSSocket. headers()
-
Uses of MultiMap in io.vertx.mutiny.httpproxy
Methods in io.vertx.mutiny.httpproxy that return MultiMap Modifier and Type Method Description MultiMap
ProxyRequest. headers()
MultiMap
ProxyResponse. headers()
-
Uses of MultiMap in io.vertx.mutiny.mqtt
Methods in io.vertx.mutiny.mqtt that return MultiMap Modifier and Type Method Description MultiMap
MqttEndpoint. httpHeaders()
-