Uses of Class
io.vertx.mutiny.ext.web.Session
- 
Packages that use Session Package Description io.vertx.mutiny.ext.web io.vertx.mutiny.ext.web.handler io.vertx.mutiny.ext.web.handler.sockjs io.vertx.mutiny.ext.web.sstore  - 
- 
Uses of Session in io.vertx.mutiny.ext.web
Fields in io.vertx.mutiny.ext.web with type parameters of type Session Modifier and Type Field Description static TypeArg<Session>Session. __TYPE_ARGMethods in io.vertx.mutiny.ext.web that return Session Modifier and Type Method Description SessionSession. computeIfAbsent(String key, Function<String,Object> mappingFunction)static SessionSession. newInstance(io.vertx.ext.web.Session arg)SessionSession. put(String key, Object obj)SessionSession. putIfAbsent(String key, Object obj)SessionSession. regenerateId()SessionRoutingContext. session()Methods in io.vertx.mutiny.ext.web with parameters of type Session Modifier and Type Method Description voidRoutingContext. setSession(Session session) - 
Uses of Session in io.vertx.mutiny.ext.web.handler
Methods in io.vertx.mutiny.ext.web.handler that return Session Modifier and Type Method Description SessionSessionHandler. newSession(RoutingContext context) - 
Uses of Session in io.vertx.mutiny.ext.web.handler.sockjs
Methods in io.vertx.mutiny.ext.web.handler.sockjs that return Session Modifier and Type Method Description SessionSockJSSocket. webSession() - 
Uses of Session in io.vertx.mutiny.ext.web.sstore
Methods in io.vertx.mutiny.ext.web.sstore that return Session Modifier and Type Method Description SessionSessionStore. createSession(long timeout)SessionSessionStore. createSession(long timeout, int length)SessionSessionStore. getAndAwait(String cookieValue)Blocking variant ofSessionStore.get(String).Methods in io.vertx.mutiny.ext.web.sstore that return types with arguments of type Session Modifier and Type Method Description io.smallrye.mutiny.Uni<Session>SessionStore. get(String cookieValue)Get the session with the specified ID.Methods in io.vertx.mutiny.ext.web.sstore with parameters of type Session Modifier and Type Method Description io.smallrye.mutiny.Uni<Void>SessionStore. put(Session session)Add a session with the specified ID.VoidSessionStore. putAndAwait(Session session)Blocking variant ofSessionStore.put(io.vertx.mutiny.ext.web.Session).voidSessionStore. putAndForget(Session session)Variant ofSessionStore.put(io.vertx.mutiny.ext.web.Session)that ignores the result of the operation. 
 -