Package io.vertx.ext.web.sstore
Interface ClusteredSessionStore
-
- All Superinterfaces:
SessionStore
public interface ClusteredSessionStore extends SessionStore
A session store which stores sessions in a distributed map so they are available across the cluster.- Author:
- Tim Fox, Paulo Lopes
-
-
Field Summary
Fields Modifier and Type Field Description static long
DEFAULT_RETRY_TIMEOUT
Default retry time out, in ms, for a session not found in this store.static String
DEFAULT_SESSION_MAP_NAME
The default name used for the session map-
Fields inherited from interface io.vertx.ext.web.sstore.SessionStore
DEFAULT_SESSIONID_LENGTH
-
-
Method Summary
Static Methods Modifier and Type Method Description static ClusteredSessionStore
create(Vertx vertx)
Create a session storestatic ClusteredSessionStore
create(Vertx vertx, long retryTimeout)
Create a session store.static ClusteredSessionStore
create(Vertx vertx, String sessionMapName)
Create a session storestatic ClusteredSessionStore
create(Vertx vertx, String sessionMapName, long retryTimeout)
Create a session store.-
Methods inherited from interface io.vertx.ext.web.sstore.SessionStore
clear, close, createSession, createSession, delete, get, init, put, retryTimeout, size
-
-
-
-
Field Detail
-
DEFAULT_SESSION_MAP_NAME
static final String DEFAULT_SESSION_MAP_NAME
The default name used for the session map- See Also:
- Constant Field Values
-
DEFAULT_RETRY_TIMEOUT
static final long DEFAULT_RETRY_TIMEOUT
Default retry time out, in ms, for a session not found in this store.- See Also:
- Constant Field Values
-
-
Method Detail
-
create
static ClusteredSessionStore create(Vertx vertx, String sessionMapName)
Create a session store- Parameters:
vertx
- the Vert.x instancesessionMapName
- the session map name- Returns:
- the session store
-
create
static ClusteredSessionStore create(Vertx vertx, String sessionMapName, long retryTimeout)
Create a session store. The retry timeout value, configures how long the session handler will retry to get a session from the store when it is not found.- Parameters:
vertx
- the Vert.x instancesessionMapName
- the session map nameretryTimeout
- the store retry timeout, in ms- Returns:
- the session store
-
create
static ClusteredSessionStore create(Vertx vertx)
Create a session store- Parameters:
vertx
- the Vert.x instance- Returns:
- the session store
-
create
static ClusteredSessionStore create(Vertx vertx, long retryTimeout)
Create a session store. The retry timeout value, configures how long the session handler will retry to get a session from the store when it is not found.- Parameters:
vertx
- the Vert.x instanceretryTimeout
- the store retry timeout, in ms- Returns:
- the session store
-
-