source: DCWoRMS/branches/coolemall/src/dcworms/schedframe/scheduling/ExecTask.java @ 1396

Revision 1396, 808 bytes checked in by wojtekp, 11 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package dcworms.schedframe.scheduling;
2
3import java.util.LinkedList;
4
5import schedframe.scheduling.ExecutionHistoryItem;
6import schedframe.scheduling.ResourceItem;
7import schedframe.scheduling.tasks.TaskInterface;
8import schedframe.scheduling.tasks.phases.ExecutionProfile;
9import schedframe.scheduling.tasks.requirements.ResourceParameterName;
10
11public interface ExecTask extends TaskInterface<org.qcg.broker.schemas.resreqs.Task> {
12
13        public boolean expectSpecificResource(ResourceParameterName resourceName);     
14        public Object getExpectedSpecificResource(ResourceParameterName resourceName);
15       
16        public ExecutionProfile getExecutionProfile();
17       
18        public LinkedList<ResourceItem> getAllocatedResources();
19    public String getSchedulerName();
20       
21        public LinkedList<ExecutionHistoryItem> getExecutionHistory();
22
23}
Note: See TracBrowser for help on using the repository browser.