List of usage examples for org.apache.zookeeper.server NIOServerCnxnFactory subclass-usage
From source file com.alibaba.jstorm.zk.Factory.java
public class Factory extends NIOServerCnxnFactory { public Factory(InetSocketAddress addr, int maxcc) throws IOException { super(); this.configure(addr, maxcc); }
From source file com.bigdatafly.flume.zookeeper.Factory.java
public class Factory extends NIOServerCnxnFactory { public Factory(InetSocketAddress addr, int maxcc) throws IOException { super(); this.configure(addr, maxcc); }
From source file hot.swap.proxy.zk.Factory.java
public class Factory extends NIOServerCnxnFactory { public Factory(InetSocketAddress addr, int maxcc) throws IOException { super(); this.configure(addr, maxcc); }
From source file org.apache.curator.framework.recipes.leader.ChaosMonkeyCnxnFactory.java
/**
* A connection factory that will behave like the NIOServerCnxnFactory except that
* it will unexpectedly close the connection right after the <b>first</b> znode has
* been created in Zookeeper.
* Subsequent create operations will succeed.
*/