source: xssim/trunk/src/test/rewolucja/energy/plugin/EnergyEstimationPluginInterface.java @ 104

Revision 104, 681 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.rewolucja.energy.plugin;
2
3import schedframe.scheduling.plugin.Plugin;
4import test.rewolucja.energy.EnergyEvent;
5import test.rewolucja.resources.physical.base.ComputingResource;
6import test.rewolucja.scheduling.JobRegistryInterface;
7
8public interface EnergyEstimationPluginInterface extends Plugin {
9       
10        public double estimatePowerConsumption(EnergyEvent event, JobRegistryInterface jobRegistry, ComputingResource resource);
11
12        public double estimateEnergyDissipation(EnergyEvent event, JobRegistryInterface jobRegistry, ComputingResource resource);
13
14        public double estimateTemperature(EnergyEvent event, JobRegistryInterface jobRegistry, ComputingResource resource);
15
16}
Note: See TracBrowser for help on using the repository browser.