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 -
-
Uses of Session in io.vertx.ext.web
Methods in io.vertx.ext.web that return Session Modifier and Type Method Description SessionSession. computeIfAbsent(String key, Function<String,Object> mappingFunction)Put some data in a session if absent.SessionSession. put(String key, Object obj)Put some data in a sessionSessionSession. putIfAbsent(String key, Object obj)Put some data in a session if absentSessionSession. regenerateId()SessionRoutingContext. 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 SessionSessionHandler. 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 SessionSockJSSocket. 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 classAbstractSessionThe 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 SessionAbstractSession. computeIfAbsent(String key, Function<String,Object> mappingFunction)SessionSessionStore. createSession(long timeout)Create a new session using the default min length.SessionSessionStore. createSession(long timeout, int length)Create a new session.SessionAbstractSession. put(String key, Object obj)SessionAbstractSession. putIfAbsent(String key, Object obj)SessionAbstractSession. 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.
-