
com.netflix.curator.utils.DefaultZookeeperFactory Maven / Gradle / Ivy
package com.netflix.curator.utils;
import org.apache.zookeeper.Watcher;
import org.apache.zookeeper.ZooKeeper;
public class DefaultZookeeperFactory implements ZookeeperFactory
{
@Override
public ZooKeeper newZooKeeper(String connectString, int sessionTimeout, Watcher watcher) throws Exception
{
return new ZooKeeper(connectString, sessionTimeout, watcher);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy