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

netflix.ocelli.loadbalancer.weighting.EqualWeightStrategy Maven / Gradle / Ivy

There is a newer version: 0.1.0-rc.2
Show newest version
package netflix.ocelli.loadbalancer.weighting;

import java.util.List;


/**
 * Strategy where all clients have the same weight
 * @author elandau
 *
 * @param 
 * @param 
 * @param 
 */
public class EqualWeightStrategy implements WeightingStrategy {

    @Override
    public ClientsAndWeights call(List clients) {
        return new ClientsAndWeights(clients, null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy