Uses of Class
io.vertx.rxjava3.core.MultiMap
-
-
Uses of MultiMap in io.vertx.rxjava3.core
Fields in io.vertx.rxjava3.core with type parameters of type MultiMap Modifier and Type Field Description static TypeArg<MultiMap>MultiMap. __TYPE_ARGMethods in io.vertx.rxjava3.core that return MultiMap Modifier and Type Method Description MultiMapMultiMap. add(CharSequence name, CharSequence value)Likeadd(java.lang.String, java.lang.String)but acceptingCharSequenceas parametersMultiMapMultiMap. add(CharSequence name, Iterable<CharSequence> values)Likeadd(java.lang.String, java.lang.String)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 allstatic MultiMapMultiMap. newInstance(MultiMap arg)MultiMapMultiMap. remove(CharSequence name)Likeremove(java.lang.String)but acceptingCharSequenceas parametersMultiMapMultiMap. remove(String name)Removes the value with the given nameMultiMapMultiMap. set(CharSequence name, CharSequence value)Likeset(java.lang.String, java.lang.String)but acceptingCharSequenceas parametersMultiMapMultiMap. set(CharSequence name, Iterable<CharSequence> values)Likeset(java.lang.String, java.lang.String)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.rxjava3.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.rxjava3.core.eventbus
Methods in io.vertx.rxjava3.core.eventbus that return MultiMap Modifier and Type Method Description MultiMapMessage. headers()Multi-map of message headers. -
Uses of MultiMap in io.vertx.rxjava3.core.http
Methods in io.vertx.rxjava3.core.http that return MultiMap Modifier and Type Method Description MultiMapHttpServerRequest. formAttributes()Returns a map of all form attributes in the request.MultiMapHttpClientRequest. headers()MultiMapHttpClientResponse. headers()static MultiMapHttpHeaders. headers()MultiMapHttpServerRequest. headers()MultiMapHttpServerResponse. headers()MultiMapServerWebSocket. headers()Returns the HTTP headers when the WebSocket is first obtained in the handler.MultiMapWebSocket. headers()Returns the HTTP headers when the WebSocket is first obtained in the handler.MultiMapWebSocketBase. headers()Returns the HTTP headers when the WebSocket is first obtained in the handler.MultiMapHttpServerRequest. params()static MultiMapHttpHeaders. set(CharSequence name, CharSequence value)static MultiMapHttpHeaders. set(String name, String value)MultiMapHttpClientResponse. trailers()MultiMapHttpServerResponse. trailers()Methods in io.vertx.rxjava3.core.http with parameters of type MultiMap Modifier and Type Method Description Future<HttpServerResponse>HttpServerResponse. push(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.reactivex.rxjava3.core.Single<HttpServerResponse>HttpServerResponse. push(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.reactivex.rxjava3.core.Single<HttpServerResponse>HttpServerResponse. push(HttpMethod method, String host, String path, MultiMap headers)Push a response to the client.io.reactivex.rxjava3.core.Single<HttpServerResponse>HttpServerResponse. rxPush(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.reactivex.rxjava3.core.Single<HttpServerResponse>HttpServerResponse. rxPush(HttpMethod method, String host, String path, MultiMap headers)Push a response to the client.io.reactivex.rxjava3.core.Single<WebSocket>HttpClient. rxWebSocketAbs(String url, MultiMap headers, 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.io.reactivex.rxjava3.core.CompletableHttpServerResponse. rxWriteEarlyHints(MultiMap headers)Same asHttpServerResponse.writeEarlyHints(io.vertx.rxjava3.core.MultiMap)but with anhandlercalled when the operation completesio.reactivex.rxjava3.core.Single<WebSocket>HttpClient. webSocketAbs(String url, MultiMap headers, 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.io.reactivex.rxjava3.core.CompletableHttpServerResponse. writeEarlyHints(MultiMap headers)Same asHttpServerResponse.writeEarlyHints(io.vertx.rxjava3.core.MultiMap)but with anhandlercalled when the operation completesMethod parameters in io.vertx.rxjava3.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. -
Uses of MultiMap in io.vertx.rxjava3.ext.auth.authorization
Methods in io.vertx.rxjava3.ext.auth.authorization that return MultiMap Modifier and Type Method Description MultiMapAuthorizationContext. variables() -
Uses of MultiMap in io.vertx.rxjava3.ext.mail
Methods in io.vertx.rxjava3.ext.mail that return MultiMap Modifier and Type Method Description MultiMapMailAttachment. getHeaders()Get the headers to be added for this attachment.Methods in io.vertx.rxjava3.ext.mail with parameters of type MultiMap Modifier and Type Method Description MailAttachmentMailAttachment. setHeaders(MultiMap headers)Set the headers to be added for this attachment. -
Uses of MultiMap in io.vertx.rxjava3.ext.web
Methods in io.vertx.rxjava3.ext.web that return MultiMap Modifier and Type Method Description MultiMapRoutingContext. queryParams()Returns a map of all query parameters inside the query string
The query parameters are lazily decoded: the decoding happens on the first time this method is called.MultiMapRoutingContext. queryParams(Charset encoding)Always decode the current query string with the givenencoding. -
Uses of MultiMap in io.vertx.rxjava3.ext.web.client
Methods in io.vertx.rxjava3.ext.web.client that return MultiMap Modifier and Type Method Description MultiMapHttpRequest. headers()MultiMapHttpResponse. headers()MultiMapHttpRequest. queryParams()Return the current query parameters.MultiMapHttpResponse. trailers()Methods in io.vertx.rxjava3.ext.web.client with parameters of type MultiMap Modifier and Type Method Description HttpRequest<T>HttpRequest. putHeaders(MultiMap headers)Configure the request to add multiple HTTP headers .io.reactivex.rxjava3.core.Single<HttpResponse<T>>HttpRequest. rxSendForm(MultiMap body)LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set toapplication/x-www-form-urlencoded.io.reactivex.rxjava3.core.Single<HttpResponse<T>>HttpRequest. rxSendForm(MultiMap body, String charset)LikeHttpRequest.send()but with an HTTP requestbodymultimap encoded as form and the content type set toapplication/x-www-form-urlencoded.io.reactivex.rxjava3.core.Single<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.reactivex.rxjava3.core.Single<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. -
Uses of MultiMap in io.vertx.rxjava3.ext.web.handler.graphql
Method parameters in io.vertx.rxjava3.ext.web.handler.graphql with type arguments of type MultiMap Modifier and Type Method Description GraphiQLHandlerGraphiQLHandler. graphiQLRequestHeaders(Function<RoutingContext,MultiMap> factory)Customize the HTTP headers to add to GraphQL requests sent by the GraphiQL user interface. -
Uses of MultiMap in io.vertx.rxjava3.ext.web.handler.sockjs
Methods in io.vertx.rxjava3.ext.web.handler.sockjs that return MultiMap Modifier and Type Method Description MultiMapSockJSSocket. headers()Return the headers corresponding to the last request for this socket or the websocket handshake Any cookie headers will be removed for security reasons -
Uses of MultiMap in io.vertx.rxjava3.grpc.client
Methods in io.vertx.rxjava3.grpc.client that return MultiMap Modifier and Type Method Description MultiMapGrpcClientResponse. trailers() -
Uses of MultiMap in io.vertx.rxjava3.grpc.common
Methods in io.vertx.rxjava3.grpc.common that return MultiMap Modifier and Type Method Description MultiMapGrpcReadStream. headers()MultiMapGrpcWriteStream. headers() -
Uses of MultiMap in io.vertx.rxjava3.grpc.server
Methods in io.vertx.rxjava3.grpc.server that return MultiMap Modifier and Type Method Description MultiMapGrpcServerResponse. trailers() -
Uses of MultiMap in io.vertx.rxjava3.httpproxy
Methods in io.vertx.rxjava3.httpproxy that return MultiMap Modifier and Type Method Description MultiMapProxyRequest. headers()MultiMapProxyResponse. headers() -
Uses of MultiMap in io.vertx.rxjava3.mqtt
Methods in io.vertx.rxjava3.mqtt that return MultiMap Modifier and Type Method Description MultiMapMqttEndpoint. httpHeaders()Returns the HTTP headers sent by the client when a WebSocket transport is used otherwisenull
-