Uses of Interface
io.vertx.core.MultiMap
Packages that use MultiMap
Package
Description
-
Uses of MultiMap in io.vertx.core
Methods in io.vertx.core that return MultiMapModifier and TypeMethodDescriptionMultiMap.add(CharSequence name, CharSequence value) Likeadd(String, String)but acceptingCharSequenceas parametersMultiMap.add(CharSequence name, Iterable<CharSequence> values) Likeadd(String, Iterable)but acceptingCharSequenceas parametersAdds a new values under the specified nameAdds a new value with the specified name and value.Adds all the entries from another MultiMap to this oneAdds 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.MultiMap.clear()Removes alldefault MultiMapMultiMap.copy()Returns a mutable copy of this instance.MultiMap.copy(boolean mutable) Returns a copy of this instance.MultiMap.remove(CharSequence name) Likeremove(String)but acceptingCharSequenceas parametersRemoves the value with the given nameMultiMap.set(CharSequence name, CharSequence value) Likeset(String, String)but acceptingCharSequenceas parametersMultiMap.set(CharSequence name, Iterable<CharSequence> values) Likeset(String, Iterable)but acceptingCharSequenceas parametersSets values for the specified name.Sets avalueunder the specifiedname.Cleans this instance.Cleans and set all values of the given instanceMethods in io.vertx.core with parameters of type MultiMap -
Uses of MultiMap in io.vertx.core.eventbus
Methods in io.vertx.core.eventbus that return MultiMapModifier and TypeMethodDescriptionDeliveryOptions.getHeaders()Get the message headersMessage.headers()Multi-map of message headers.Methods in io.vertx.core.eventbus with parameters of type MultiMapModifier and TypeMethodDescriptionDeliveryOptions.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 MultiMapModifier and TypeMethodDescriptionHttpServerRequest.formAttributes()Returns a map of all form attributes in the request.RequestOptions.getHeaders()Get the request headersUpgradeRejectedException.getHeaders()HttpClientRequest.headers()static MultiMapHttpHeaders.headers()static MultiMapHttpHeaders.headers(HttpVersion version) HttpRequestHead.headers()HttpResponseHead.headers()HttpServerResponse.headers()ServerWebSocketHandshake.headers()Returns the HTTP headers.WebSocketBase.headers()Returns the HTTP headers.default MultiMapHttpServerRequest.params()HttpServerRequest.params(boolean semicolonIsNormalChar) static MultiMapHttpHeaders.set(CharSequence name, CharSequence value) static MultiMapHttpClientResponse.trailers()HttpServerResponse.trailers()Methods in io.vertx.core.http with parameters of type MultiMapModifier and TypeMethodDescriptionstatic ClientFormHttpServerResponse.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.RequestOptions.setHeaders(MultiMap headers) Set request headers from a multi-map.WebSocketConnectOptions.setHeaders(MultiMap headers) 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 MultiMapModifier and TypeMethodDescriptionHttpClientRequest.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 MultiMapModifierConstructorDescriptionUpgradeRejectedException(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