Ignore:
Timestamp:
10/31/12 13:52:06 (12 years ago)
Author:
wojtekp
Message:
 
Location:
DCWoRMS/trunk/build/classes/schedframe/scheduling/plugin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/trunk/build/classes/schedframe/scheduling/plugin/SchedulingPlugin.java

    r477 r539  
    33import schedframe.Plugin; 
    44import schedframe.events.scheduling.SchedulingEvent; 
    5 import schedframe.scheduling.WorkloadUnitListImpl; 
     5import schedframe.scheduling.TaskList; 
     6import schedframe.scheduling.TaskListImpl; 
    67import schedframe.scheduling.manager.resources.ResourceManager; 
    78import schedframe.scheduling.manager.tasks.JobRegistry; 
     
    1213public interface SchedulingPlugin extends Plugin{ 
    1314 
    14         public int placeJobsInQueues(WorkloadUnitListImpl newJobs, 
     15        public int placeTasksInQueues(TaskList newTasks, 
    1516                        TaskQueueList queues,  
    1617                        ResourceManager resourceManager, ModuleList modules); 
  • DCWoRMS/trunk/build/classes/schedframe/scheduling/plugin/estimation/ExecutionTimeEstimationPlugin.java

    r477 r539  
    11package schedframe.scheduling.plugin.estimation; 
    22 
    3 import gssim.schedframe.scheduling.ExecTask; 
    43 
    5 import java.util.List; 
    64import java.util.Map; 
     5 
     6import dcworms.schedframe.scheduling.ExecTask; 
    77 
    88import schedframe.Plugin; 
     
    3232         * @return estimated execution time of a task of specified length 
    3333         */ 
    34         public double execTimeEstimation(SchedulingEvent event, Map<ResourceUnitName, ResourceUnit> allocatedResources,  
    35                                                                         ExecTask task,  
     34        public double execTimeEstimation(SchedulingEvent event, ExecTask task, Map<ResourceUnitName, ResourceUnit> allocatedResources,  
    3635                                                                        double completionPercentage); 
    3736         
Note: See TracChangeset for help on using the changeset viewer.