Revision 1207,
887 bytes
checked in by wojtekp, 11 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[477] | 1 | package schedframe.resources.computing; |
---|
| 2 | |
---|
| 3 | import schedframe.resources.StandardResourceType; |
---|
| 4 | import schedframe.resources.computing.description.ComputingResourceDescription; |
---|
| 5 | import schedframe.scheduling.Scheduler; |
---|
| 6 | import schedframe.scheduling.manager.resources.ManagedResources; |
---|
| 7 | import schedframe.scheduling.plugin.SchedulingPlugin; |
---|
| 8 | import schedframe.scheduling.plugin.estimation.ExecutionTimeEstimationPlugin; |
---|
| 9 | import schedframe.scheduling.queue.TaskQueueList; |
---|
| 10 | |
---|
| 11 | |
---|
[1207] | 12 | public interface ResourceFactory { |
---|
[477] | 13 | |
---|
[1207] | 14 | public ComputingResource createComputingResource(ComputingResourceDescription resDesc); |
---|
| 15 | |
---|
| 16 | //public Device createDevice(DeviceDescription devDesc); |
---|
[477] | 17 | |
---|
[1207] | 18 | public Scheduler createScheduler(StandardResourceType type, String id, SchedulingPlugin schedulingPlugin, ExecutionTimeEstimationPlugin execTimeEstimationPlugin, TaskQueueList queues, ManagedResources managedResources) throws Exception; |
---|
[477] | 19 | } |
---|
| 20 | |
---|
Note: See
TracBrowser
for help on using the repository browser.