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_ARGMethods in io.vertx.mutiny.core that return MultiMap Modifier and Type Method Description MultiMapMultiMap. add(CharSequence name, CharSequence value)MultiMapMultiMap. add(CharSequence name, Iterable<CharSequence> values)MultiMapMultiMap. add(String name, Iterable<String> values)MultiMapMultiMap. add(String name, String value)MultiMapMultiMap. addAll(MultiMap map)MultiMapMultiMap. addAll(Map<String,String> headers)static MultiMapMultiMap. caseInsensitiveMultiMap()MultiMapMultiMap. clear()static MultiMapMultiMap. newInstance(io.vertx.core.MultiMap arg)MultiMapMultiMap. remove(CharSequence name)MultiMapMultiMap. remove(String name)MultiMapMultiMap. set(CharSequence name, CharSequence value)MultiMapMultiMap. set(CharSequence name, Iterable<CharSequence> values)MultiMapMultiMap. set(String name, Iterable<String> values)MultiMapMultiMap. set(String name, String value)MultiMapMultiMap. setAll(MultiMap map)MultiMapMultiMap. setAll(Map<String,String> headers)Methods in io.vertx.mutiny.core with parameters of type MultiMap Modifier and Type Method Description MultiMapMultiMap. addAll(MultiMap map)MultiMapMultiMap. 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 MultiMapMessage. 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 MultiMapHttpServerRequest. formAttributes()MultiMapHttpClientRequest. headers()MultiMapHttpClientResponse. headers()static MultiMapHttpHeaders. headers()MultiMapHttpServerRequest. headers()MultiMapHttpServerResponse. headers()MultiMapServerWebSocket. headers()MultiMapWebSocket. headers()MultiMapWebSocketBase. headers()MultiMapHttpServerRequest. params()static MultiMapHttpHeaders. set(CharSequence name, CharSequence value)static MultiMapHttpHeaders. set(String name, String value)MultiMapHttpClientResponse. trailers()MultiMapHttpServerResponse. 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 anhandlercalled 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.HttpServerResponseHttpServerResponse. pushAndAwait(io.vertx.core.http.HttpMethod method, HostAndPort authority, String path, MultiMap headers)HttpServerResponseHttpServerResponse. pushAndAwait(io.vertx.core.http.HttpMethod method, String path, MultiMap headers)Blocking variant ofHttpServerResponse.push(HttpMethod,String,io.vertx.mutiny.core.MultiMap).HttpServerResponseHttpServerResponse. 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).HttpServerResponseHttpServerResponse. 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.HttpServerResponseHttpServerResponse. 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.HttpServerResponseHttpServerResponse. 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.WebSocketHttpClient. webSocketAbsAndAwait(String url, MultiMap headers, io.vertx.core.http.WebsocketVersion version, List<String> subProtocols)Blocking variant ofHttpClient.webSocketAbs(String,io.vertx.mutiny.core.MultiMap,WebsocketVersion,List).voidHttpClient. webSocketAbsAndForget(String url, MultiMap headers, io.vertx.core.http.WebsocketVersion version, List<String> subProtocols)Variant ofHttpClient.webSocketAbs(String,io.vertx.mutiny.core.MultiMap,WebsocketVersion,List)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void>HttpServerResponse. writeEarlyHints(MultiMap headers)Same asHttpServerResponse.writeEarlyHints(io.vertx.mutiny.core.MultiMap)but with anhandlercalled when the operation completesVoidHttpServerResponse. writeEarlyHintsAndAwait(MultiMap headers)Blocking variant ofHttpServerResponse.writeEarlyHints(io.vertx.mutiny.core.MultiMap).voidHttpServerResponse. 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 HttpClientRequestHttpClientRequest. 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 MultiMapAuthorizationContext. 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 MultiMapMailAttachment. getHeaders()Methods in io.vertx.mutiny.ext.mail with parameters of type MultiMap Modifier and Type Method Description MailAttachmentMailAttachment. 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 MultiMapRoutingContext. queryParams()MultiMapRoutingContext. 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 MultiMapHttpRequest. headers()MultiMapHttpResponse. headers()MultiMapHttpRequest. queryParams()MultiMapHttpResponse. 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 requestbodymultimap 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 requestbodymultimap 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).voidHttpRequest. sendFormAndForget(MultiMap body)Variant ofHttpRequest.sendForm(io.vertx.mutiny.core.MultiMap)that ignores the result of the operation.voidHttpRequest. 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 GraphiQLHandlerGraphiQLHandler. 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 MultiMapSockJSSocket. headers() - 
Uses of MultiMap in io.vertx.mutiny.httpproxy
Methods in io.vertx.mutiny.httpproxy that return MultiMap Modifier and Type Method Description MultiMapProxyRequest. headers()MultiMapProxyResponse. headers() - 
Uses of MultiMap in io.vertx.mutiny.mqtt
Methods in io.vertx.mutiny.mqtt that return MultiMap Modifier and Type Method Description MultiMapMqttEndpoint. httpHeaders() 
 -