Package com.netflix.evcache.pool.observer

Examples of com.netflix.evcache.pool.observer.EVCacheConnectionObserver


    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.observer.EVCacheConnectionObserver

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.