Revision 1207,
887 bytes
checked in by wojtekp, 11 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Line | |
---|
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 | |
---|
12 | public interface ResourceFactory { |
---|
13 | |
---|
14 | public ComputingResource createComputingResource(ComputingResourceDescription resDesc); |
---|
15 | |
---|
16 | //public Device createDevice(DeviceDescription devDesc); |
---|
17 | |
---|
18 | public Scheduler createScheduler(StandardResourceType type, String id, SchedulingPlugin schedulingPlugin, ExecutionTimeEstimationPlugin execTimeEstimationPlugin, TaskQueueList queues, ManagedResources managedResources) throws Exception; |
---|
19 | } |
---|
20 | |
---|
Note: See
TracBrowser
for help on using the repository browser.