List of usage examples for org.apache.zookeeper.server ZooKeeperServerMain subclass-usage
From source file com.griddynamics.jagger.ZooKeeperServerWrapper.java
public class ZooKeeperServerWrapper extends ZooKeeperServerMain { public void shutdown() { super.shutdown(); } }
From source file com.navercorp.nbasearc.confmaster.EmbeddedZooKeeper.java
public class EmbeddedZooKeeper extends ZooKeeperServerMain implements Runnable { private static String configPath; private static EmbeddedZooKeeper zookeeper; private static ServerConfig config; private static boolean start = false; private static Thread thread;
From source file com.reversemind.glia.zookeeper.LocalTestZookeeper.java
/**
*
* Copyright (c) 2013-2014 Eugene Kalinin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
From source file com.reversemind.hypergate.zookeeper.EmbeddedZookeeper.java
/**
*
* Copyright (c) 2013-2014 Eugene Kalinin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
From source file com.xiaomi.linden.common.EmbeddedZooKeeper.java
public class EmbeddedZooKeeper extends ZooKeeperServerMain { private static final Logger LOGGER = LoggerFactory.getLogger(EmbeddedZooKeeper.class); private Thread thread; private Properties zkConfig = null; private File zkDir; private int port = 2181;
From source file ejb.zookeeper.LocalZookeeper.java
/**
*
* Copyright (c) 2013 Eugene Kalinin
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
From source file org.apache.curator.test.TestingZooKeeperMain.java
public class TestingZooKeeperMain extends ZooKeeperServerMain implements ZooKeeperMainFace { private final CountDownLatch latch = new CountDownLatch(1); private final AtomicReference<Exception> startingException = new AtomicReference<Exception>(null); private static final int MAX_WAIT_MS;
From source file org.apache.nifi.controller.state.server.ZooKeeperStateServer.java
public class ZooKeeperStateServer extends ZooKeeperServerMain { private static final Logger logger = LoggerFactory.getLogger(ZooKeeperStateServer.class); private final QuorumPeerConfig quorumPeerConfig; private volatile boolean started = false;