org.cloudbus.cloudsim.allocationpolicies.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudsim-plus Show documentation
Show all versions of cloudsim-plus Show documentation
CloudSim Plus: A modern, highly extensible and easier-to-use Java 8 Framework for Modeling and Simulation of Cloud Computing Infrastructures and Services
/**
* Provides classes that implement policies for a {@link org.cloudbus.cloudsim.datacenters.Datacenter}
* to select a Host to place or migrate a VM, based on some criteria defined by each class.
* Different policies can follow approaches such as best-fit, worst-fit and so on.
*
*
* Each Datacenter must have its own instance of a {@link org.cloudbus.cloudsim.allocationpolicies.VmAllocationPolicy}.
* The most basic implementation is provided by the class {@link org.cloudbus.cloudsim.allocationpolicies.VmAllocationPolicySimple}.
* Only classes that implement the {@link org.cloudbus.cloudsim.allocationpolicies.migration.VmAllocationPolicyMigration}
* interface are able to perform VM migration.
*
*
* @author Manoel Campos da Silva Filho
*/
package org.cloudbus.cloudsim.allocationpolicies;