Revision 1396,
762 bytes
checked in by wojtekp, 11 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[477] | 1 | package schedframe.scheduling.plugin; |
---|
| 2 | |
---|
| 3 | import schedframe.Plugin; |
---|
| 4 | import schedframe.events.scheduling.SchedulingEvent; |
---|
[490] | 5 | import schedframe.scheduling.TaskList; |
---|
[477] | 6 | import schedframe.scheduling.manager.resources.ResourceManager; |
---|
| 7 | import schedframe.scheduling.manager.tasks.JobRegistry; |
---|
| 8 | import schedframe.scheduling.plan.SchedulingPlanInterface; |
---|
| 9 | import schedframe.scheduling.queue.TaskQueueList; |
---|
| 10 | |
---|
| 11 | public interface SchedulingPlugin extends Plugin{ |
---|
| 12 | |
---|
[516] | 13 | public boolean placeTasksInQueues(TaskList newTasks, |
---|
[477] | 14 | TaskQueueList queues, |
---|
| 15 | ResourceManager resourceManager, ModuleList modules); |
---|
| 16 | |
---|
| 17 | public SchedulingPlanInterface<?> schedule(SchedulingEvent event, |
---|
| 18 | TaskQueueList queues, |
---|
| 19 | JobRegistry jobRegistry, |
---|
| 20 | ResourceManager resourceManager, ModuleList modules); |
---|
| 21 | |
---|
| 22 | } |
---|
| 23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.