Uses of Class
io.vertx.mutiny.ext.web.sstore.SessionStore
Packages that use SessionStore
Package
Description
-
Uses of SessionStore in io.vertx.mutiny.ext.web.handler
Methods in io.vertx.mutiny.ext.web.handler with parameters of type SessionStoreModifier and TypeMethodDescriptionstatic SessionHandler
SessionHandler.create
(SessionStore sessionStore) -
Uses of SessionStore in io.vertx.mutiny.ext.web.sstore
Subclasses of SessionStore in io.vertx.mutiny.ext.web.sstoreModifier and TypeClassDescriptionclass
A session store which stores sessions in a distributed map so they are available across the cluster.class
A session store which is only available on a single node.Fields in io.vertx.mutiny.ext.web.sstore with type parameters of type SessionStoreMethods in io.vertx.mutiny.ext.web.sstore that return SessionStoreModifier and TypeMethodDescriptionSessionStore.clearAndForget()
Variant ofclear()
that ignores the result of the operation.static SessionStore
static SessionStore
SessionStore.deleteAndForget
(String id) Variant ofdelete(String)
that ignores the result of the operation.SessionStore.getAndForget
(String cookieValue) Variant ofget(String)
that ignores the result of the operation.static SessionStore
SessionStore.newInstance
(io.vertx.ext.web.sstore.SessionStore arg) SessionStore.putAndForget
(Session session) Variant ofput(io.vertx.mutiny.ext.web.Session)
that ignores the result of the operation.SessionStore.sizeAndForget()
Variant ofsize()
that ignores the result of the operation. -
Uses of SessionStore in io.vertx.mutiny.ext.web.sstore.cookie
Subclasses of SessionStore in io.vertx.mutiny.ext.web.sstore.cookieModifier and TypeClassDescriptionclass
A SessionStore that uses a Cookie to store the session data. -
Uses of SessionStore in io.vertx.mutiny.ext.web.sstore.infinispan
Subclasses of SessionStore in io.vertx.mutiny.ext.web.sstore.infinispanModifier and TypeClassDescriptionclass
An implementation of that relies on the Infinispan Java Client. -
Uses of SessionStore in io.vertx.mutiny.ext.web.sstore.redis
Subclasses of SessionStore in io.vertx.mutiny.ext.web.sstore.redisModifier and TypeClassDescriptionclass
A SessionStore that uses a Redis to store the sessions and associated data.