org.wildfly.clustering.web.session.SessionManager Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2013, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.wildfly.clustering.web.session;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import org.wildfly.clustering.web.Batcher;
public interface SessionManager extends SessionIdentifierFactory, RouteLocator {
/**
* Invoked prior to applicaion deployment.
*/
void start();
/**
* Invoked prior to application undeployment.
*/
void stop();
/**
* Indicates whether or not the session with the specified identifier is known to this session manager.
* @param id a unique session identifier
* @return true, if the session is known to the manager, false otherwise
*/
boolean containsSession(String id);
/**
* Returns the session with the specified identifier, or null if none exists.
* Sessions returned by this method must be closed via {@link Session#close()}.
* This method is intended to be invoked within the context of a batch.
* @param id a session identifier
* @return an existing web session, or null if none exists
*/
Session findSession(String id);
/**
* Returns the session with the specified identifier, creating one if necessary
* Sessions returned by this method must be closed via {@link Session#close()}.
* This method is intended to be invoked within the context of a batch.
* @param id a session identifier
* @return a new or existing web session
*/
Session createSession(String id);
/**
* Returns the default maximum inactive interval, using the specified unit, for all sessions created by this session manager.
* @param unit a time unit
* @return a time interval
*/
long getDefaultMaxInactiveInterval(TimeUnit unit);
/**
* Set the default maximum inactive interval, using the specified unit, for all sessions created by this session manager.
* @return value a time interval
* @param unit a time unit
*/
void setDefaultMaxInactiveInterval(long value, TimeUnit unit);
/**
* Exposes the batching mechanism used by this session manager.
* @return a batcher.
*/
Batcher getBatcher();
/**
* Returns the identifiers of those sessions that are active on this node.
* @return a set of session identifiers.
*/
Set getActiveSessions();
/**
* Returns the identifiers of all sessions on this node, including both active and passive sessions.
* @return a set of session identifiers.
*/
Set getLocalSessions();
/**
* Returns a read-only view of the session with the specified identifier.
* This method is intended to be invoked within the context of a batch
* @param id a unique session identifier
* @return a read-only session or null if none exists
*/
ImmutableSession viewSession(String id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy