Uses of Interface
io.vertx.ext.web.Session
-
Packages that use Session Package Description io.vertx.ext.web io.vertx.ext.web.handler io.vertx.ext.web.handler.sockjs io.vertx.ext.web.sstore io.vertx.reactivex.ext.web io.vertx.rxjava3.ext.web -
-
Uses of Session in io.vertx.ext.web
Methods in io.vertx.ext.web that return Session Modifier and Type Method Description Session
Session. computeIfAbsent(String key, java.util.function.Function<String,Object> mappingFunction)
Put some data in a session if absent.Session
Session. put(String key, Object obj)
Put some data in a sessionSession
Session. putIfAbsent(String key, Object obj)
Put some data in a session if absentSession
Session. regenerateId()
Session
RoutingContext. session()
Get the session. -
Uses of Session in io.vertx.ext.web.handler
Methods in io.vertx.ext.web.handler that return Session Modifier and Type Method Description Session
SessionHandler. newSession(RoutingContext context)
Create a new session -
Uses of Session in io.vertx.ext.web.handler.sockjs
Methods in io.vertx.ext.web.handler.sockjs that return Session Modifier and Type Method Description Session
SockJSSocket. webSession()
-
Uses of Session in io.vertx.ext.web.sstore
Classes in io.vertx.ext.web.sstore that implement Session Modifier and Type Class Description class
AbstractSession
The abstract session class provides a barebones implementation for session storage implementors.Methods in io.vertx.ext.web.sstore that return Session Modifier and Type Method Description Session
AbstractSession. computeIfAbsent(String key, java.util.function.Function<String,Object> mappingFunction)
Session
SessionStore. createSession(long timeout)
Create a new session using the default min length.Session
SessionStore. createSession(long timeout, int length)
Create a new session.Session
AbstractSession. put(String key, Object obj)
Session
AbstractSession. putIfAbsent(String key, Object obj)
Session
AbstractSession. regenerateId()
Methods in io.vertx.ext.web.sstore that return types with arguments of type Session Modifier and Type Method Description Future<Session>
SessionStore. get(String cookieValue)
Get the session with the specified ID.Methods in io.vertx.ext.web.sstore with parameters of type Session Modifier and Type Method Description Future<Void>
SessionStore. put(Session session)
Add a session with the specified ID. -
Uses of Session in io.vertx.reactivex.ext.web
Methods in io.vertx.reactivex.ext.web that return Session Modifier and Type Method Description Session
Session. getDelegate()
Methods in io.vertx.reactivex.ext.web with parameters of type Session Modifier and Type Method Description static Session
Session. newInstance(Session arg)
Constructors in io.vertx.reactivex.ext.web with parameters of type Session Constructor Description Session(Session delegate)
-
Uses of Session in io.vertx.rxjava3.ext.web
Methods in io.vertx.rxjava3.ext.web that return Session Modifier and Type Method Description Session
Session. getDelegate()
Methods in io.vertx.rxjava3.ext.web with parameters of type Session Modifier and Type Method Description static Session
Session. newInstance(Session arg)
Constructors in io.vertx.rxjava3.ext.web with parameters of type Session Constructor Description Session(Session delegate)
-