org.cloudsimplus.cloudlets.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
The newest version!
/**
* Provides {@link org.cloudsimplus.cloudlets.Cloudlet} implementations,
* that represent an application that will run inside a {@link org.cloudsimplus.vms.Vm}.
* Each Cloudlet is abstractly defined in terms of its characteristics,
* such as the number of Million Instructions (MI) to execute,
* the number of required {@link org.cloudsimplus.resources.Pe}
* and a {@link org.cloudsimplus.utilizationmodels.UtilizationModel} for CPU, RAM and bandwidth.
*
* Each utilization model defines how a given resource will be used by the Cloudlet along the time.
* Some basic utilization models implementations are provided, such as the
* {@link org.cloudsimplus.utilizationmodels.UtilizationModelFull},
* which indicates that a given available resource will be used 100% all the time.
*
* Specific Cloudlet implementations can be, for instance, network-aware, enabling the simulation
* of network communication. For more information
* see {@link org.cloudsimplus.datacenters} package documentation.
*
*
* @author Manoel Campos da Silva Filho
*/
package org.cloudsimplus.cloudlets;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy