Package org.apache.curator.x.discovery

Examples of org.apache.curator.x.discovery.ServiceProvider


  {
    if (serviceName == null) {
      return new ServerDiscoverySelector(new NoopServiceProvider());
    }

    final ServiceProvider serviceProvider = serviceDiscovery
        .serviceProviderBuilder()
        .serviceName(CuratorServiceUtils.makeCanonicalServiceName(serviceName))
        .build();
    return new ServerDiscoverySelector(serviceProvider);
  }
View Full Code Here

TOP

Related Classes of org.apache.curator.x.discovery.ServiceProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.