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
HttpClientRequest. headers()
MultiMap
HttpClientResponse. headers()
static MultiMap
HttpHeaders. headers()
MultiMap
HttpServerRequest. headers()
MultiMap
HttpServerResponse. headers()
MultiMap
ServerWebSocket. headers()
MultiMap
WebSocket. headers()
MultiMap
WebSocketBase. headers()
MultiMap
HttpServerRequest. params()
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, 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, 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, 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)
Connect a WebSocket with the specified absolute url, with the specified headers, using the specified version of WebSockets, and the specified WebSocket sub protocols.WebSocket
HttpClient. webSocketAbsAndAwait(String url, MultiMap headers, io.vertx.core.http.WebsocketVersion version, List<String> subProtocols)
Blocking variant ofio.vertx.mutiny.core.http.HttpClient#webSocketAbs(String,io.vertx.mutiny.core.MultiMap,WebsocketVersion,List
.) void
HttpClient. webSocketAbsAndForget(String url, MultiMap headers, io.vertx.core.http.WebsocketVersion version, List<String> subProtocols)
Variant ofio.vertx.mutiny.core.http.HttpClient#webSocketAbs(String,io.vertx.mutiny.core.MultiMap,WebsocketVersion,List
that ignores the result of the operation.) -
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.auth.oauth2
Methods in io.vertx.mutiny.ext.auth.oauth2 that return MultiMap Modifier and Type Method Description MultiMap
OAuth2Response. headers()
Deprecated. -
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 GraphiQLHandler
GraphiQLHandler. graphiQLRequestHeaders(Function<RoutingContext,MultiMap> factory)
-
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()
-