
com.github.ibole.microservice.registry.zookeeper.ZkRegistryFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microservice-discovery Show documentation
Show all versions of microservice-discovery Show documentation
The discovery®istry module of microservice project
The newest version!
package com.github.ibole.microservice.registry.zookeeper;
import com.github.ibole.microservice.common.ServerIdentifier;
import com.github.ibole.microservice.discovery.HostMetadata;
import com.github.ibole.microservice.registry.AbstractRegistryFactory;
import com.github.ibole.microservice.registry.ServiceRegistry;
/**
* Zookeeper registry factory.
* @author bwang
*
*/
public class ZkRegistryFactory extends AbstractRegistryFactory {
@Override
protected ServiceRegistry createRegistry(ServerIdentifier identifier) {
return new ZkServiceRegistry(identifier);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy