Uses of Class
io.vertx.mutiny.ext.web.Session
Packages that use Session
Package
Description
-
Uses of Session in io.vertx.mutiny.ext.web
Fields in io.vertx.mutiny.ext.web with type parameters of type SessionMethods in io.vertx.mutiny.ext.web that return SessionModifier and TypeMethodDescriptionSession.computeIfAbsent(String key, Function<String, Object> mappingFunction) Put some data in a session if absent.static SessionSession.newInstance(io.vertx.ext.web.Session delegate) Creates a new instance of theSession.Put some data in a sessionSession.putIfAbsent(String key, Object obj) Put some data in a session if absentSession.regenerateId()RoutingContext.session()Get the session. -
Uses of Session in io.vertx.mutiny.ext.web.handler
Methods in io.vertx.mutiny.ext.web.handler that return SessionModifier and TypeMethodDescriptionSessionHandler.newSession(RoutingContext context) Create a new session -
Uses of Session in io.vertx.mutiny.ext.web.handler.sockjs
Methods in io.vertx.mutiny.ext.web.handler.sockjs that return Session -
Uses of Session in io.vertx.mutiny.ext.web.sstore
Methods in io.vertx.mutiny.ext.web.sstore that return SessionModifier and TypeMethodDescriptionSessionStore.createSession(long timeout) Create a new session using the default min length.SessionStore.createSession(long timeout, int length) Create a new session.ClusteredSessionStore.getAndAwait(String arg0) Get the session with the specified ID.LocalSessionStore.getAndAwait(String arg0) Get the session with the specified ID.SessionStore.getAndAwait(String cookieValue) Get the session with the specified ID.Methods in io.vertx.mutiny.ext.web.sstore that return types with arguments of type SessionModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Session>Get the session with the specified ID.io.smallrye.mutiny.Uni<Session>Get the session with the specified ID.io.smallrye.mutiny.Uni<Session>Get the session with the specified ID.Methods in io.vertx.mutiny.ext.web.sstore with parameters of type SessionModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Void>Add a session with the specified ID.io.smallrye.mutiny.Uni<Void>Add a session with the specified ID.io.smallrye.mutiny.Uni<Void>Add a session with the specified ID.voidClusteredSessionStore.putAndAwait(Session arg0) Add a session with the specified ID.voidLocalSessionStore.putAndAwait(Session arg0) Add a session with the specified ID.voidSessionStore.putAndAwait(Session session) Add a session with the specified ID.ClusteredSessionStore.putAndForget(Session arg0) Add a session with the specified ID.LocalSessionStore.putAndForget(Session arg0) Add a session with the specified ID.SessionStore.putAndForget(Session session) Add a session with the specified ID.