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

org.cloudbus.cloudsim.selectionpolicies.VmSelectionPolicyNull Maven / Gradle / Ivy

Go to download

CloudSim Plus: A modern, highly extensible and easier-to-use Java 8 Framework for Modeling and Simulation of Cloud Computing Infrastructures and Services

There is a newer version: 8.0.0
Show newest version
package org.cloudbus.cloudsim.selectionpolicies;

import org.cloudbus.cloudsim.hosts.Host;
import org.cloudbus.cloudsim.vms.Vm;

/**
 * A class that implements the Null Object Design Pattern for {@link VmSelectionPolicy}
 * class.
 *
 * @author Manoel Campos da Silva Filho
 * @see VmSelectionPolicy#NULL
 * @since CloudSim Plus 4.1.2
 */
final class VmSelectionPolicyNull implements VmSelectionPolicy {
    @Override public Vm getVmToMigrate(Host host) { return Vm.NULL; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy