All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vertx.rxjava.ext.web.sstore.LocalSessionStore Maven / Gradle / Ivy

/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package io.vertx.rxjava.ext.web.sstore;

import java.util.Map;
import io.vertx.lang.rxjava.InternalHelper;
import rx.Observable;
import io.vertx.rxjava.core.Vertx;

/**
 * A session store which is only available on a single node.
 * 

* Can be used when sticky sessions are being used. * *

* NOTE: This class has been automatically generated from the {@link io.vertx.ext.web.sstore.LocalSessionStore original} non RX-ified interface using Vert.x codegen. */ public class LocalSessionStore extends SessionStore { final io.vertx.ext.web.sstore.LocalSessionStore delegate; public LocalSessionStore(io.vertx.ext.web.sstore.LocalSessionStore delegate) { super(delegate); this.delegate = delegate; } public Object getDelegate() { return delegate; } /** * Create a session store * @param vertx the Vert.x instance * @return the session store */ public static LocalSessionStore create(Vertx vertx) { LocalSessionStore ret= LocalSessionStore.newInstance(io.vertx.ext.web.sstore.LocalSessionStore.create((io.vertx.core.Vertx) vertx.getDelegate())); return ret; } /** * Create a session store * @param vertx the Vert.x instance * @param sessionMapName name for map used to store sessions * @return the session store */ public static LocalSessionStore create(Vertx vertx, String sessionMapName) { LocalSessionStore ret= LocalSessionStore.newInstance(io.vertx.ext.web.sstore.LocalSessionStore.create((io.vertx.core.Vertx) vertx.getDelegate(), sessionMapName)); return ret; } /** * Create a session store * @param vertx the Vert.x instance * @param sessionMapName name for map used to store sessions * @param reaperInterval how often, in ms, to check for expired sessions * @return the session store */ public static LocalSessionStore create(Vertx vertx, String sessionMapName, long reaperInterval) { LocalSessionStore ret= LocalSessionStore.newInstance(io.vertx.ext.web.sstore.LocalSessionStore.create((io.vertx.core.Vertx) vertx.getDelegate(), sessionMapName, reaperInterval)); return ret; } public static LocalSessionStore newInstance(io.vertx.ext.web.sstore.LocalSessionStore arg) { return arg != null ? new LocalSessionStore(arg) : null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy