netflix.ocelli.ManagedLoadBalancer 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 rx.Observable;
/**
* A concrete ClientSelector keeps track of all available hosts and returns
* the most recent immutable collection of connected {@link C}'s.
*
* @author elandau
*/
public interface ManagedLoadBalancer extends LoadBalancer {
/**
* @return Observable of all hosts (active or not)
*/
Observable listAllClients();
/**
* @return All clients ready to serve traffic
*/
Observable listActiveClients();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy