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

org.cloudbus.cloudsim.resources.ResourceNull 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.resources;

/**
 * A class that implements the Null Object Design Pattern for {@link Resource}
 * class.
 *
 * @author Manoel Campos da Silva Filho
 * @see Resource#NULL
 */
final class ResourceNull implements Resource {
    @Override public long getAvailableResource() { return 0; }
    @Override public long getAllocatedResource() {
        return 0;
    }
    @Override public boolean isResourceAmountAvailable(long amountToCheck) {
        return false;
    }
    @Override public boolean isFull() {
        return false;
    }
    @Override public long getCapacity() {
        return 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy