Package org.menagerie.latches.spi

Examples of org.menagerie.latches.spi.ZkCountDownLatch


*/
@Beta
public final class LatchBuilder {

    public final static DistributedCountDownLatch newCountDownLatch(long total, String latchNode, ZkSessionManager zkSessionManager) {
        return new ZkCountDownLatch(total, latchNode, zkSessionManager);
    }
View Full Code Here


    public final static DistributedCountDownLatch newCountDownLatch(long total, String latchNode, ZkSessionManager zkSessionManager) {
        return new ZkCountDownLatch(total, latchNode, zkSessionManager);
    }

    public final static DistributedCountDownLatch newCountDownLatch(long total, String latchNode, ZkSessionManager zkSessionManager, List<ACL> privileges) {
        return new ZkCountDownLatch(total, latchNode, zkSessionManager, privileges);
    }
View Full Code Here

    public final static DistributedCountDownLatch newCountDownLatch(long total, String latchNode, ZkSessionManager zkSessionManager, List<ACL> privileges) {
        return new ZkCountDownLatch(total, latchNode, zkSessionManager, privileges);
    }

    public final static DistributedCountDownLatch newCountDownLatch(long total, String latchNode, ZkSessionManager zkSessionManager, List<ACL> privileges, boolean tolerateFailures) {
        return new ZkCountDownLatch(total, latchNode, zkSessionManager, privileges, tolerateFailures);
    }
View Full Code Here

TOP

Related Classes of org.menagerie.latches.spi.ZkCountDownLatch

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.