
org.ow2.cmi.lb.strategy.NoStrategy Maven / Gradle / Ivy
/**
* CMI : Cluster Method Invocation
* Copyright (C) 2007,2008 Bull S.A.S.
* Contact: [email protected]
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
* --------------------------------------------------------------------------
* $Id: NoStrategy.java 2150 2008-10-13 00:55:34Z loris $
* --------------------------------------------------------------------------
*/
package org.ow2.cmi.lb.strategy;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import net.jcip.annotations.Immutable;
import org.ow2.cmi.lb.LoadBalanceable;
/**
* A strategy that does nothing.
* @author The new CMI team
* @param The type of objects that are load-balanced
*/
@Immutable
public final class NoStrategy implements IStrategy {
/**
* Returns the same list of load-balanceables.
* @param loadBalanceables a list of load-balanceables
* @return the same list of load-balanceables
*/
public List choose(final Collection loadBalanceables) {
return new ArrayList(loadBalanceables);
}
@Override
public String toString() {
return "NoStrategy";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy