Package com.netflix.evcache.pool.eureka.connection

Examples of com.netflix.evcache.pool.eureka.connection.EVCacheConnectionFactory


     * @throws IOException - The exception while trying to establish the connection with the hosts.
     *          Typically this can happen if the Security Groups are configured properly, the hosts don't exists.
     */
    EVCacheClientImpl(String appName, String zone, int id, int maxQueueSize, DynamicIntProperty readTimeout,
            List<InetSocketAddress> memcachedNodesInZone) throws IOException {
        super(appName, zone, id, readTimeout, new EVCacheConnectionFactory(appName, zone, id, maxQueueSize));

        this.client = new MemcachedClient(connectionFactory, memcachedNodesInZone);
        this.connectionObserver = new EVCacheConnectionObserver(appName, zone, id);
        this.client.addObserver(connectionObserver);
    }
View Full Code Here

TOP

Related Classes of com.netflix.evcache.pool.eureka.connection.EVCacheConnectionFactory

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.