netflix.ocelli.LoadBalancers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ocelli-core Show documentation
Show all versions of ocelli-core Show documentation
ocelli-core developed by Netflix
package netflix.ocelli;
import netflix.ocelli.loadbalancer.DefaultLoadBalancerBuilder;
import rx.Observable;
public class LoadBalancers {
public static LoadBalancerBuilder newBuilder(Observable> hostSource) {
return new DefaultLoadBalancerBuilder(hostSource);
}
public static LoadBalancer fromHostSource(Observable> hostSource) {
return newBuilder(hostSource).build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy