Uses of Class
io.vertx.rxjava.ext.web.sstore.SessionStore
-
-
Uses of SessionStore in io.vertx.rxjava.ext.web.handler
Methods in io.vertx.rxjava.ext.web.handler with parameters of type SessionStore Modifier and Type Method Description static SessionHandlerSessionHandler. create(SessionStore sessionStore)Create a session handler -
Uses of SessionStore in io.vertx.rxjava.ext.web.sstore
Subclasses of SessionStore in io.vertx.rxjava.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.rxjava.ext.web.sstore with type parameters of type SessionStore Modifier and Type Field Description static TypeArg<SessionStore>SessionStore. __TYPE_ARGMethods in io.vertx.rxjava.ext.web.sstore that return SessionStore Modifier and Type Method Description SessionStoreSessionStore. clear()Remove all sessions from the store.SessionStoreSessionStore. clear(Handler<AsyncResult<Void>> resultHandler)Remove all sessions from the store.static SessionStoreSessionStore. create(Vertx vertx)Create a Session store given a backend and configuration JSON.static SessionStoreSessionStore. create(Vertx vertx, JsonObject options)Create a Session store given a backend and configuration JSON.SessionStoreSessionStore. delete(String id)Delete the session with the specified ID.SessionStoreSessionStore. delete(String id, Handler<AsyncResult<Void>> resultHandler)Delete the session with the specified ID.SessionStoreSessionStore. get(String cookieValue)Get the session with the specified ID.SessionStoreSessionStore. get(String cookieValue, Handler<AsyncResult<Session>> resultHandler)Get the session with the specified ID.SessionStoreSessionStore. init(Vertx vertx, JsonObject options)Initialize this store.static SessionStoreSessionStore. newInstance(SessionStore arg)SessionStoreSessionStore. put(Session session)Add a session with the specified ID.SessionStoreSessionStore. put(Session session, Handler<AsyncResult<Void>> resultHandler)Add a session with the specified ID.SessionStoreSessionStore. size()Get the number of sessions in the store.SessionStoreSessionStore. size(Handler<AsyncResult<Integer>> resultHandler)Get the number of sessions in the store. -
Uses of SessionStore in io.vertx.rxjava.ext.web.sstore.cookie
Subclasses of SessionStore in io.vertx.rxjava.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.rxjava.ext.web.sstore.infinispan
Subclasses of SessionStore in io.vertx.rxjava.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.rxjava.ext.web.sstore.redis
Subclasses of SessionStore in io.vertx.rxjava.ext.web.sstore.redis Modifier and Type Class Description classRedisSessionStoreA SessionStore that uses a Redis to store the sessions and associated data.
-