Package dk.brics.jwig

Examples of dk.brics.jwig.ServerBusyException


     *
     * @throws ServerBusyException if <code>jwig.max_sessions</code> reached
     */
    synchronized public void store(Session s) throws ServerBusyException {
        if (sessionset.size() >= max_sessions) {
            throw new ServerBusyException("too many active sessions");
        }
        log.info("Storing session " + s.getID());
        sessionset.add(s);
        sessionmap.put(s.getID(), s);
        for (SessionManagerListener l : listeners) {
View Full Code Here

TOP

Related Classes of dk.brics.jwig.ServerBusyException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.