Uses of Class
io.vertx.mutiny.ext.web.sstore.SessionStore
Packages that use SessionStore
-
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 SessionHandlerSessionHandler.create(SessionStore sessionStore) -
Uses of SessionStore in io.vertx.mutiny.ext.web.sstore
Subclasses of SessionStore in io.vertx.mutiny.ext.web.sstoreModifier and TypeClassDescriptionclassA session store which stores sessions in a distributed map so they are available across the cluster.classA session store which is only available on a single node.Fields in io.vertx.mutiny.ext.web.sstore with type parameters of type SessionStoreModifier and TypeFieldDescriptionstatic final io.smallrye.mutiny.vertx.TypeArg<SessionStore> SessionStore.__TYPE_ARGMethods in io.vertx.mutiny.ext.web.sstore that return SessionStoreModifier and TypeMethodDescriptionSessionStore.clearAndForget()Variant ofclear()that ignores the result of the operation.static SessionStoreSessionStore.create(io.vertx.mutiny.core.Vertx vertx) static SessionStoreSessionStore.create(io.vertx.mutiny.core.Vertx vertx, io.vertx.core.json.JsonObject options) 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.SessionStore.init(io.vertx.mutiny.core.Vertx vertx, io.vertx.core.json.JsonObject options) static SessionStoreSessionStore.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.