Uses of Interface
io.vertx.core.MultiMap
-
Packages that use MultiMap Package Description io.vertx.core io.vertx.core.eventbus io.vertx.core.http io.vertx.core.spi.observability -
-
Uses of MultiMap in io.vertx.core
Methods in io.vertx.core that return MultiMap Modifier and Type Method Description MultiMapMultiMap. add(CharSequence name, CharSequence value)Likeadd(String, String)but acceptingCharSequenceas parametersMultiMapMultiMap. add(CharSequence name, Iterable<CharSequence> values)Likeadd(String, Iterable)but acceptingCharSequenceas parametersMultiMapMultiMap. add(String name, Iterable<String> values)Adds a new values under the specified nameMultiMapMultiMap. add(String name, String value)Adds a new value with the specified name and value.MultiMapMultiMap. addAll(MultiMap map)Adds all the entries from another MultiMap to this oneMultiMapMultiMap. addAll(Map<String,String> headers)Adds all the entries from a Map to thisstatic MultiMapMultiMap. caseInsensitiveMultiMap()Create a multi-map implementation with case insensitive keys, for instance it can be used to hold some HTTP headers.MultiMapMultiMap. clear()Removes alldefault MultiMapMultiMap. copy()Returns a mutable copy of this instance.MultiMapMultiMap. copy(boolean mutable)Returns a copy of this instance.MultiMapMultiMap. remove(CharSequence name)Likeremove(String)but acceptingCharSequenceas parametersMultiMapMultiMap. remove(String name)Removes the value with the given nameMultiMapMultiMap. set(CharSequence name, CharSequence value)Likeset(String, String)but acceptingCharSequenceas parametersMultiMapMultiMap. set(CharSequence name, Iterable<CharSequence> values)Likeset(String, Iterable)but acceptingCharSequenceas parametersMultiMapMultiMap. set(String name, Iterable<String> values)Sets values for the specified name.MultiMapMultiMap. set(String name, String value)Sets avalueunder the specifiedname.MultiMapMultiMap. setAll(MultiMap map)Cleans this instance.MultiMapMultiMap. setAll(Map<String,String> headers)Cleans and set all values of the given instanceMethods in io.vertx.core with parameters of type MultiMap Modifier and Type Method Description MultiMapMultiMap. addAll(MultiMap map)Adds all the entries from another MultiMap to this oneMultiMapMultiMap. setAll(MultiMap map)Cleans this instance. -
Uses of MultiMap in io.vertx.core.eventbus
Methods in io.vertx.core.eventbus that return MultiMap Modifier and Type Method Description MultiMapDeliveryOptions. getHeaders()Get the message headersMultiMapMessage. headers()Multi-map of message headers.Methods in io.vertx.core.eventbus with parameters of type MultiMap Modifier and Type Method Description DeliveryOptionsDeliveryOptions. setHeaders(MultiMap headers)Set message headers from a multi-map. -
Uses of MultiMap in io.vertx.core.http
Methods in io.vertx.core.http that return MultiMap Modifier and Type Method Description MultiMapHttpServerRequest. formAttributes()Returns a map of all form attributes in the request.MultiMapRequestOptions. getHeaders()Get the request headersMultiMapUpgradeRejectedException. getHeaders()MultiMapHttpClientRequest. headers()static MultiMapHttpHeaders. headers()static MultiMapHttpHeaders. headers(HttpVersion version)MultiMapHttpRequestHead. headers()MultiMapHttpResponseHead. headers()MultiMapHttpServerResponse. headers()MultiMapServerWebSocketHandshake. headers()Returns the HTTP headers.MultiMapWebSocketBase. headers()Returns the HTTP headers.default 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.core.http with parameters of type MultiMap Modifier and Type Method Description static ClientFormClientForm. form(MultiMap initial)Future<HttpServerResponse>HttpServerResponse. push(HttpMethod method, HostAndPort authority, String path, MultiMap headers)Push a response to the client.default Future<HttpServerResponse>HttpServerResponse. push(HttpMethod method, String path, MultiMap headers)LikeHttpServerResponse.push(HttpMethod, HostAndPort, String, MultiMap)with the host copied from the current request.RequestOptionsRequestOptions. setHeaders(MultiMap headers)Set request headers from a multi-map.WebSocketConnectOptionsWebSocketConnectOptions. setHeaders(MultiMap headers)Future<Void>HttpServerResponse. writeEarlyHints(MultiMap headers)Used to write an interim 103 Early Hints response to return some HTTP headers before the final HTTP message.Method parameters in io.vertx.core.http with type arguments of type MultiMap Modifier and Type Method Description HttpClientRequestHttpClientRequest. earlyHintsHandler(Handler<MultiMap> handler)If the server responds with an interim HTTP response with a status code of103and a Early Hints handler has been set using this method, then thehandlerwill be called.Constructors in io.vertx.core.http with parameters of type MultiMap Constructor Description UpgradeRejectedException(String message, int status, MultiMap headers, Buffer content) -
Uses of MultiMap in io.vertx.core.spi.observability
Methods in io.vertx.core.spi.observability that return MultiMap Modifier and Type Method Description MultiMapHttpRequest. headers()MultiMapHttpResponse. headers()
-