Uses of Class
io.vertx.mutiny.ext.web.sstore.SessionStore
- 
- 
Uses of SessionStore in io.vertx.mutiny.ext.web.handler
Methods in io.vertx.mutiny.ext.web.handler with parameters of type SessionStore Modifier and Type Method Description static SessionHandlerSessionHandler. create(SessionStore sessionStore) - 
Uses of SessionStore in io.vertx.mutiny.ext.web.sstore
Subclasses of SessionStore in io.vertx.mutiny.ext.web.sstore Modifier and Type Class Description classClusteredSessionStoreA session store which stores sessions in a distributed map so they are available across the cluster.classLocalSessionStoreA session store which is only available on a single node.Fields in io.vertx.mutiny.ext.web.sstore with type parameters of type SessionStore Modifier and Type Field Description static TypeArg<SessionStore>SessionStore. __TYPE_ARGMethods in io.vertx.mutiny.ext.web.sstore that return SessionStore Modifier and Type Method Description SessionStoreSessionStore. clearAndForget()Variant ofclear()that ignores the result of the operation.static SessionStoreSessionStore. create(Vertx vertx)static SessionStoreSessionStore. create(Vertx vertx, io.vertx.core.json.JsonObject options)SessionStoreSessionStore. deleteAndForget(String id)Variant ofdelete(String)that ignores the result of the operation.SessionStoreSessionStore. getAndForget(String cookieValue)Variant ofget(String)that ignores the result of the operation.SessionStoreSessionStore. init(Vertx vertx, io.vertx.core.json.JsonObject options)static SessionStoreSessionStore. newInstance(io.vertx.ext.web.sstore.SessionStore arg)SessionStoreSessionStore. putAndForget(Session session)Variant ofput(io.vertx.mutiny.ext.web.Session)that ignores the result of the operation.SessionStoreSessionStore. 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.cookie Modifier and Type Class Description classCookieSessionStoreA 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.infinispan Modifier and Type Class Description classInfinispanSessionStoreAn 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.redis Modifier and Type Class Description classRedisSessionStoreA SessionStore that uses a Redis to store the sessions and associated data. 
 -