Uses of Interface
io.vertx.ext.web.client.WebClientSession
-
Packages that use WebClientSession Package Description io.vertx.ext.web.client io.vertx.reactivex.ext.web.client io.vertx.rxjava3.ext.web.client -
-
Uses of WebClientSession in io.vertx.ext.web.client
Methods in io.vertx.ext.web.client that return WebClientSession Modifier and Type Method Description WebClientSession
WebClientSession. addHeader(CharSequence name, CharSequence value)
Configure the client to add an HTTP header to every request.WebClientSession
WebClientSession. addHeader(CharSequence name, Iterable<CharSequence> values)
Configure the client to add an HTTP header to every request.WebClientSession
WebClientSession. addHeader(String name, Iterable<String> values)
Configure the client to add an HTTP header to every request.WebClientSession
WebClientSession. addHeader(String name, String value)
Configure the client to add an HTTP header to every request.WebClientSession
WebClientSession. addInterceptor(Handler<io.vertx.ext.web.client.impl.HttpContext<?>> interceptor)
static WebClientSession
WebClientSession. create(WebClient webClient)
Create a session aware web client using the providedwebClient
instance.static WebClientSession
WebClientSession. create(WebClient webClient, CookieStore cookieStore)
Create a session aware web client using the providedwebClient
instance.WebClientSession
WebClientSession. removeHeader(CharSequence name)
Removes a previously added header.WebClientSession
WebClientSession. removeHeader(String name)
Removes a previously added header. -
Uses of WebClientSession in io.vertx.reactivex.ext.web.client
Methods in io.vertx.reactivex.ext.web.client that return WebClientSession Modifier and Type Method Description WebClientSession
WebClientSession. getDelegate()
Methods in io.vertx.reactivex.ext.web.client with parameters of type WebClientSession Modifier and Type Method Description static WebClientSession
WebClientSession. newInstance(WebClientSession arg)
Constructors in io.vertx.reactivex.ext.web.client with parameters of type WebClientSession Constructor Description WebClientSession(WebClientSession delegate)
-
Uses of WebClientSession in io.vertx.rxjava3.ext.web.client
Methods in io.vertx.rxjava3.ext.web.client that return WebClientSession Modifier and Type Method Description WebClientSession
WebClientSession. getDelegate()
Methods in io.vertx.rxjava3.ext.web.client with parameters of type WebClientSession Modifier and Type Method Description static WebClientSession
WebClientSession. newInstance(WebClientSession arg)
Constructors in io.vertx.rxjava3.ext.web.client with parameters of type WebClientSession Constructor Description WebClientSession(WebClientSession delegate)
-