Uses of Class
org.apache.zookeeper.server.ServerCnxnFactory
-
Packages that use ServerCnxnFactory Package Description org.apache.zookeeper.server ZooKeeper server theory of operationorg.apache.zookeeper.server.quorum -
-
Uses of ServerCnxnFactory in org.apache.zookeeper.server
Subclasses of ServerCnxnFactory in org.apache.zookeeper.server Modifier and Type Class Description class
NettyServerCnxnFactory
class
NIOServerCnxnFactory
Methods in org.apache.zookeeper.server that return ServerCnxnFactory Modifier and Type Method Description static ServerCnxnFactory
ServerCnxnFactory. createFactory()
static ServerCnxnFactory
ServerCnxnFactory. createFactory(int clientPort, int maxClientCnxns)
static ServerCnxnFactory
ServerCnxnFactory. createFactory(java.net.InetSocketAddress addr, int maxClientCnxns)
ServerCnxnFactory
ZooKeeperServer. getServerCnxnFactory()
Methods in org.apache.zookeeper.server with parameters of type ServerCnxnFactory Modifier and Type Method Description void
ZooKeeperServer. setServerCnxnFactory(ServerCnxnFactory factory)
-
Uses of ServerCnxnFactory in org.apache.zookeeper.server.quorum
Methods in org.apache.zookeeper.server.quorum that return ServerCnxnFactory Modifier and Type Method Description ServerCnxnFactory
QuorumPeer. getCnxnFactory()
Methods in org.apache.zookeeper.server.quorum with parameters of type ServerCnxnFactory Modifier and Type Method Description void
QuorumPeer. setCnxnFactory(ServerCnxnFactory cnxnFactory)
Constructors in org.apache.zookeeper.server.quorum with parameters of type ServerCnxnFactory Constructor Description QuorumPeer(java.util.Map<java.lang.Long,QuorumPeer.QuorumServer> quorumPeers, java.io.File dataDir, java.io.File dataLogDir, int electionType, long myid, int tickTime, int initLimit, int syncLimit, boolean quorumListenOnAllIPs, ServerCnxnFactory cnxnFactory, QuorumVerifier quorumConfig)
QuorumPeer(java.util.Map<java.lang.Long,QuorumPeer.QuorumServer> quorumPeers, java.io.File dataDir, java.io.File dataLogDir, int electionType, long myid, int tickTime, int initLimit, int syncLimit, ServerCnxnFactory cnxnFactory)
For backward compatibility purposes, we instantiate QuorumMaj by default.
-