Uses of Class
io.vertx.reactivex.core.MultiMap
-
-
Uses of MultiMap in io.vertx.reactivex.core
Fields in io.vertx.reactivex.core with type parameters of type MultiMap Modifier and Type Field Description static TypeArg<MultiMap>
MultiMap. __TYPE_ARG
Methods in io.vertx.reactivex.core that return MultiMap Modifier and Type Method Description MultiMap
MultiMap. add(CharSequence name, CharSequence value)
Likeadd(java.lang.String, java.lang.String)
but acceptingCharSequence
as parametersMultiMap
MultiMap. add(CharSequence name, Iterable<CharSequence> values)
Likeadd(java.lang.String, java.lang.String)
but acceptingCharSequence
as parametersMultiMap
MultiMap. add(String name, Iterable<String> values)
Adds a new values under the specified nameMultiMap
MultiMap. add(String name, String value)
Adds a new value with the specified name and value.MultiMap
MultiMap. addAll(MultiMap map)
Adds all the entries from another MultiMap to this oneMultiMap
MultiMap. addAll(Map<String,String> headers)
Adds all the entries from a Map to thisstatic MultiMap
MultiMap. caseInsensitiveMultiMap()
Create a multi-map implementation with case insensitive keys, for instance it can be used to hold some HTTP headers.MultiMap
MultiMap. clear()
Removes allstatic MultiMap
MultiMap. newInstance(MultiMap arg)
MultiMap
MultiMap. remove(CharSequence name)
Likeremove(java.lang.String)
but acceptingCharSequence
as parametersMultiMap
MultiMap. remove(String name)
Removes the value with the given nameMultiMap
MultiMap. set(CharSequence name, CharSequence value)
Likeset(java.lang.String, java.lang.String)
but acceptingCharSequence
as parametersMultiMap
MultiMap. set(CharSequence name, Iterable<CharSequence> values)
Likeset(java.lang.String, java.lang.String)
but acceptingCharSequence
as parametersMultiMap
MultiMap. set(String name, Iterable<String> values)
Sets values for the specified name.MultiMap
MultiMap. set(String name, String value)
Sets avalue
under the specifiedname
.MultiMap
MultiMap. setAll(MultiMap map)
Cleans this instance.MultiMap
MultiMap. setAll(Map<String,String> headers)
Cleans and set all values of the given instanceMethods in io.vertx.reactivex.core with parameters of type MultiMap Modifier and Type Method Description MultiMap
MultiMap. addAll(MultiMap map)
Adds all the entries from another MultiMap to this oneMultiMap
MultiMap. setAll(MultiMap map)
Cleans this instance. -
Uses of MultiMap in io.vertx.reactivex.core.eventbus
Methods in io.vertx.reactivex.core.eventbus that return MultiMap Modifier and Type Method Description MultiMap
Message. headers()
Multi-map of message headers. -
Uses of MultiMap in io.vertx.reactivex.core.http
Methods in io.vertx.reactivex.core.http that return MultiMap Modifier and Type Method Description MultiMap
HttpServerRequest. formAttributes()
Returns a map of all form attributes in the request.MultiMap
ClientWebSocket. headers()
Returns the HTTP headers when the WebSocket is first obtained in the handler.MultiMap
HttpClientRequest. headers()
MultiMap
HttpClientResponse. headers()
static MultiMap
HttpHeaders. headers()
MultiMap
HttpServerRequest. headers()
MultiMap
HttpServerResponse. headers()
MultiMap
ServerWebSocket. headers()
Returns the HTTP headers when the WebSocket is first obtained in the handler.MultiMap
WebSocket. headers()
Returns the HTTP headers when the WebSocket is first obtained in the handler.MultiMap
WebSocketBase. headers()
Returns the HTTP headers when the WebSocket is first obtained in the handler.MultiMap
HttpServerRequest. params()
static MultiMap
HttpHeaders. set(CharSequence name, CharSequence value)
static MultiMap
HttpHeaders. set(String name, String value)
MultiMap
HttpClientResponse. trailers()
MultiMap
HttpServerResponse. trailers()
Method parameters in io.vertx.reactivex.core.http with type arguments of type MultiMap Modifier and Type Method Description HttpClientRequest
HttpClientRequest. earlyHintsHandler(Handler<MultiMap> handler)
If the server responds with an interim HTTP response with a status code of103
and a Early Hints handler has been set using this method, then thehandler
will be called. -
Uses of MultiMap in io.vertx.reactivex.ext.auth.authorization
Methods in io.vertx.reactivex.ext.auth.authorization that return MultiMap Modifier and Type Method Description MultiMap
AuthorizationContext. variables()
-
Uses of MultiMap in io.vertx.reactivex.ext.mail
Methods in io.vertx.reactivex.ext.mail that return MultiMap Modifier and Type Method Description MultiMap
MailAttachment. getHeaders()
Get the headers to be added for this attachment.Methods in io.vertx.reactivex.ext.mail with parameters of type MultiMap Modifier and Type Method Description MailAttachment
MailAttachment. setHeaders(MultiMap headers)
Set the headers to be added for this attachment. -
Uses of MultiMap in io.vertx.reactivex.ext.web
Methods in io.vertx.reactivex.ext.web that return MultiMap Modifier and Type Method Description MultiMap
RoutingContext. 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.MultiMap
RoutingContext. queryParams(Charset encoding)
Always decode the current query string with the givenencoding
. -
Uses of MultiMap in io.vertx.reactivex.ext.web.client
Methods in io.vertx.reactivex.ext.web.client that return MultiMap Modifier and Type Method Description MultiMap
HttpRequest. headers()
MultiMap
HttpResponse. headers()
MultiMap
HttpRequest. queryParams()
Return the current query parameters.MultiMap
HttpResponse. trailers()
Methods in io.vertx.reactivex.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.Single<HttpResponse<T>>
HttpRequest. rxSendForm(MultiMap body)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.io.reactivex.Single<HttpResponse<T>>
HttpRequest. rxSendForm(MultiMap body, String charset)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.void
HttpRequest. sendForm(MultiMap body)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.void
HttpRequest. sendForm(MultiMap body, Handler<AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.void
HttpRequest. sendForm(MultiMap body, String charset)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
.void
HttpRequest. sendForm(MultiMap body, String charset, Handler<AsyncResult<HttpResponse<T>>> handler)
LikeHttpRequest.send(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.ext.web.client.HttpResponse<T>>>)
but with an HTTP requestbody
multimap encoded as form and the content type set toapplication/x-www-form-urlencoded
. -
Uses of MultiMap in io.vertx.reactivex.ext.web.handler.graphql
Method parameters in io.vertx.reactivex.ext.web.handler.graphql with type arguments of type MultiMap Modifier and Type Method Description GraphiQLHandler
GraphiQLHandler. 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.reactivex.ext.web.handler.sockjs
Methods in io.vertx.reactivex.ext.web.handler.sockjs that return MultiMap Modifier and Type Method Description MultiMap
SockJSSocket. 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.reactivex.grpc.client
Methods in io.vertx.reactivex.grpc.client that return MultiMap Modifier and Type Method Description MultiMap
GrpcClientResponse. trailers()
-
Uses of MultiMap in io.vertx.reactivex.grpc.common
Methods in io.vertx.reactivex.grpc.common that return MultiMap Modifier and Type Method Description MultiMap
GrpcReadStream. headers()
MultiMap
GrpcWriteStream. headers()
-
Uses of MultiMap in io.vertx.reactivex.grpc.server
Methods in io.vertx.reactivex.grpc.server that return MultiMap Modifier and Type Method Description MultiMap
GrpcServerResponse. trailers()
-
Uses of MultiMap in io.vertx.reactivex.mqtt
Methods in io.vertx.reactivex.mqtt that return MultiMap Modifier and Type Method Description MultiMap
MqttEndpoint. httpHeaders()
Returns the HTTP headers sent by the client when a WebSocket transport is used otherwisenull
-