/*
 * Copyright 2014 Red Hat, Inc.
 *
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  and Apache License v2.0 which accompanies this distribution.
 *
 *  The Eclipse Public License is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  The Apache License v2.0 is available at
 *  http://www.opensource.org/licenses/apache2.0.php
 *
 *  You may elect to redistribute this code under either of these licenses.
 */

package io.vertx.ext.web.sstore;

import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.Vertx;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl;

A session store which stores sessions in a distributed map so they are available across the cluster.
Author:Tim Fox, Paulo Lopes
/** * A session store which stores sessions in a distributed map so they are available across the cluster. * * @author <a href="http://tfox.org">Tim Fox</a> * @author <a href="mailto:plopes@redhat.com">Paulo Lopes</a> */
@VertxGen public interface ClusteredSessionStore extends SessionStore {
The default name used for the session map
/** * The default name used for the session map */
String DEFAULT_SESSION_MAP_NAME = "vertx-web.sessions";
Default retry time out, in ms, for a session not found in this store.
/** * Default retry time out, in ms, for a session not found in this store. */
long DEFAULT_RETRY_TIMEOUT = 5 * 1000; // 5 seconds
Create a session store
Params:
  • vertx – the Vert.x instance
  • sessionMapName – the session map name
Returns:the session store
/** * Create a session store * * @param vertx the Vert.x instance * @param sessionMapName the session map name * @return the session store */
static ClusteredSessionStore create(Vertx vertx, String sessionMapName) { ClusteredSessionStoreImpl store = new ClusteredSessionStoreImpl(); store.init(vertx, new JsonObject() .put("retryTimeout", DEFAULT_RETRY_TIMEOUT) .put("mapName", sessionMapName)); return store; }
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.
Params:
  • vertx – the Vert.x instance
  • sessionMapName – the session map name
  • retryTimeout – the store retry timeout, in ms
Returns:the session store
/** * Create a session store.<p/> * * The retry timeout value, configures how long the session handler will retry to get a session from the store * when it is not found. * * @param vertx the Vert.x instance * @param sessionMapName the session map name * @param retryTimeout the store retry timeout, in ms * @return the session store */
static ClusteredSessionStore create(Vertx vertx, String sessionMapName, long retryTimeout) { ClusteredSessionStoreImpl store = new ClusteredSessionStoreImpl(); store.init(vertx, new JsonObject() .put("retryTimeout", retryTimeout) .put("mapName", sessionMapName)); return store; }
Create a session store
Params:
  • vertx – the Vert.x instance
Returns:the session store
/** * Create a session store * * @param vertx the Vert.x instance * @return the session store */
static ClusteredSessionStore create(Vertx vertx) { ClusteredSessionStoreImpl store = new ClusteredSessionStoreImpl(); store.init(vertx, new JsonObject() .put("retryTimeout", DEFAULT_RETRY_TIMEOUT) .put("mapName", DEFAULT_SESSION_MAP_NAME)); return store; }
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.
Params:
  • vertx – the Vert.x instance
  • retryTimeout – the store retry timeout, in ms
Returns:the session store
/** * Create a session store.<p/> * * The retry timeout value, configures how long the session handler will retry to get a session from the store * when it is not found. * * @param vertx the Vert.x instance * @param retryTimeout the store retry timeout, in ms * @return the session store */
static ClusteredSessionStore create(Vertx vertx, long retryTimeout) { ClusteredSessionStoreImpl store = new ClusteredSessionStoreImpl(); store.init(vertx, new JsonObject() .put("retryTimeout", retryTimeout) .put("mapName", DEFAULT_SESSION_MAP_NAME)); return store; } }