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

org.cloudbus.cloudsim.allocationpolicies.package-info 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
/**
 * 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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy