All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ibole.microservice.registry.zookeeper.ZkRegistryFactory Maven / Gradle / Ivy

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