Package net.spy.memcached

Examples of net.spy.memcached.MemcachedConnection


    }
   
   
    public MemcachedConnection createConnection(List<InetSocketAddress> addrs)
            throws IOException {
        final MemcachedConnection connection = new MemcachedConnection(getReadBufSize(), this, addrs, getInitialObservers(), getFailureMode(), getOperationFactory());
        connection.setName(appName + "-" + zone + "-" + id);
        return connection;
    }
View Full Code Here

TOP

Related Classes of net.spy.memcached.MemcachedConnection

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.