Package com.netflix.curator.framework.recipes.cache

Examples of com.netflix.curator.framework.recipes.cache.PathChildrenCache


                .build();

        _nodes = Maps.newConcurrentMap();
        _listeners = Sets.newSetFromMap(Maps.<NodeListener<T>, Boolean>newConcurrentMap());
        _curator = curator;
        _pathCache = new PathChildrenCache(curator, nodePath, true, threadFactory);
        _nodeDataParser = parser;
        _executor = Executors.newSingleThreadScheduledExecutor(threadFactory);
        _closed = false;
    }
View Full Code Here


                .build();

        _nodes = Maps.newConcurrentMap();
        _listeners = Sets.newSetFromMap(Maps.<NodeListener<T>, Boolean>newConcurrentMap());
        _curator = curator;
        _pathCache = new PathChildrenCache(curator, nodePath, true, threadFactory);
        _nodeDataParser = parser;
        _executor = Executors.newSingleThreadScheduledExecutor(threadFactory);
        _closed = false;
    }
View Full Code Here

TOP

Related Classes of com.netflix.curator.framework.recipes.cache.PathChildrenCache

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.