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_ARG
Methods in io.vertx.mutiny.ext.web that return Session Modifier and Type Method Description Session
Session. computeIfAbsent(String key, Function<String,Object> mappingFunction)
static Session
Session. newInstance(io.vertx.ext.web.Session arg)
Session
Session. put(String key, Object obj)
Session
Session. putIfAbsent(String key, Object obj)
Session
Session. regenerateId()
Session
RoutingContext. session()
Methods in io.vertx.mutiny.ext.web with parameters of type Session Modifier and Type Method Description void
RoutingContext. 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 Session
SessionHandler. 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 Session
SockJSSocket. 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 Session
SessionStore. createSession(long timeout)
Session
SessionStore. createSession(long timeout, int length)
Session
SessionStore. 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.Void
SessionStore. putAndAwait(Session session)
Blocking variant ofSessionStore.put(io.vertx.mutiny.ext.web.Session)
.void
SessionStore. putAndForget(Session session)
Variant ofSessionStore.put(io.vertx.mutiny.ext.web.Session)
that ignores the result of the operation.
-