Package org.cloudbus.cloudsim.provisioners

Provides ResourceProvisioner implementations that define policies used by a Host to manage the allocation of some resource for its VMs, such as Ram, Bandwidth or Pe.
  • Interface Summary 
    Interface Description
    PeProvisioner
    An interface that represents the provisioning policy used by a host to provide virtual PEs to its virtual machines.
    ResourceProvisioner
    An interface that represents the provisioning policy used by a Host to provide a given physical resource to its Vms.
  • Class Summary 
    Class Description
    PeProvisionerSimple
    A best-effort PeProvisioner policy used by a Host to provide virtual PEs to VMs from its physical PEs: if there is available MIPS on the physical PE, it allocates to a virtual PE; otherwise, it fails.
    ResourceProvisionerAbstract
    An abstract class that implements the basic features of a provisioning policy used by a Host to provide a given resource to its virtual machines.
    ResourceProvisionerSimple
    A best-effort ResourceProvisioner policy used by a Host to provide a resource to VMs: if there is available amount of the resource on the host, it provides; otherwise, it fails.