Class RedisSessionStore
- java.lang.Object
-
- io.vertx.reactivex.ext.web.sstore.SessionStore
-
- io.vertx.reactivex.ext.web.sstore.redis.RedisSessionStore
-
public class RedisSessionStore extends SessionStore
A SessionStore that uses a Redis to store the sessions and associated data. This assumes that the redis logical database (i.e. select) is only used to store the sessions to make size query reliable.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<RedisSessionStore>
__TYPE_ARG
static long
DEFAULT_RETRY_TIMEOUT_MS
static int
DEFAULT_SESSIONID_LENGTH
Default length for a session id.
-
Constructor Summary
Constructors Constructor Description RedisSessionStore(RedisSessionStore delegate)
RedisSessionStore(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RedisSessionStore
create(Vertx vertx, long retryTimeoutMs, Redis redis)
Creates a RedisSessionStore with the given retry TO.static RedisSessionStore
create(Vertx vertx, Redis redis)
Creates a RedisSessionStore with the default retry TO.boolean
equals(Object o)
RedisSessionStore
getDelegate()
int
hashCode()
static RedisSessionStore
newInstance(RedisSessionStore arg)
String
toString()
-
Methods inherited from class io.vertx.reactivex.ext.web.sstore.SessionStore
clear, close, create, create, createSession, createSession, delete, get, init, newInstance, put, retryTimeout, rxClear, rxDelete, rxGet, rxPut, rxSize, size
-
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<RedisSessionStore> __TYPE_ARG
-
DEFAULT_SESSIONID_LENGTH
public static final int DEFAULT_SESSIONID_LENGTH
Default length for a session id. More info: https://www.owasp.org/index.php/Session_Management_Cheat_Sheet- See Also:
- Constant Field Values
-
DEFAULT_RETRY_TIMEOUT_MS
public static final long DEFAULT_RETRY_TIMEOUT_MS
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RedisSessionStore
public RedisSessionStore(RedisSessionStore delegate)
-
RedisSessionStore
public RedisSessionStore(Object delegate)
-
-
Method Detail
-
toString
public String toString()
- Overrides:
toString
in classSessionStore
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classSessionStore
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classSessionStore
-
getDelegate
public RedisSessionStore getDelegate()
- Overrides:
getDelegate
in classSessionStore
-
create
public static RedisSessionStore create(Vertx vertx, Redis redis)
Creates a RedisSessionStore with the default retry TO.- Parameters:
vertx
- a Vert.x instanceredis
- A Redis client- Returns:
- the store
-
create
public static RedisSessionStore create(Vertx vertx, long retryTimeoutMs, Redis redis)
Creates a RedisSessionStore with the given retry TO.- Parameters:
vertx
- a Vert.x instanceretryTimeoutMs
- The time between two consecutive triesredis
- The given options to establish the connection- Returns:
- the store
-
newInstance
public static RedisSessionStore newInstance(RedisSessionStore arg)
-
-