Uses of Class
io.vertx.mutiny.core.MultiMap
-
Packages that use MultiMap Package Description io.vertx.mutiny.core io.vertx.mutiny.core.eventbus io.vertx.mutiny.core.http -
-
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 io.smallrye.mutiny.vertx.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()MultiMapClientWebSocket. headers()MultiMapHttpClientRequest. headers()MultiMapHttpClientResponse. headers()static MultiMapHttpHeaders. headers()MultiMapHttpResponseHead. headers()MultiMapHttpServerRequest. headers()MultiMapHttpServerResponse. headers()MultiMapServerWebSocket. headers()MultiMapWebSocket. headers()MultiMapWebSocketBase. headers()MultiMapHttpServerRequest. params()MultiMapHttpServerRequest. params(boolean semicolonIsNormalChar)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)Deprecated.instead useWebSocketClient#connect(WebSocketConnectOptions, Handler)WebSocketHttpClient. webSocketAbsAndAwait(String url, MultiMap headers, io.vertx.core.http.WebsocketVersion version, List<String> subProtocols)Deprecated.instead useWebSocketClient#connect(WebSocketConnectOptions, Handler)voidHttpClient. 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 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)
-