Revision 104,
681 bytes
checked in by wojtekp, 13 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[104] | 1 | package test.rewolucja.energy.plugin; |
---|
| 2 | |
---|
| 3 | import schedframe.scheduling.plugin.Plugin; |
---|
| 4 | import test.rewolucja.energy.EnergyEvent; |
---|
| 5 | import test.rewolucja.resources.physical.base.ComputingResource; |
---|
| 6 | import test.rewolucja.scheduling.JobRegistryInterface; |
---|
| 7 | |
---|
| 8 | public 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.