Package org.logicalcobwebs.proxool.util

Examples of org.logicalcobwebs.proxool.util.FastArrayList


    protected ConnectionPool(ConnectionPoolDefinition definition) throws ProxoolException {

        // Use the FastArrayList for performance and thread safe
        // behaviour. We set its behaviour to "fast"  (meaning reads are
        // unsynchronized, whilst writes are not).
        FastArrayList fal = new FastArrayList();
        fal.setFast(true);
        proxyConnections = fal;

        log = LogFactory.getLog("org.logicalcobwebs.proxool." + definition.getAlias());
        connectionResetter = new ConnectionResetter(log, definition.getDriver());
        setDefinition(definition);
View Full Code Here

TOP

Related Classes of org.logicalcobwebs.proxool.util.FastArrayList

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.