source: DCWoRMS/trunk/src/schedframe/scheduling/WorkloadUnitHandler.java @ 481

Revision 481, 343 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package schedframe.scheduling;
2
3import schedframe.scheduling.tasks.Job;
4
5import schedframe.scheduling.tasks.TaskInterface;
6import gssim.schedframe.scheduling.ExecTask;
7
8public  interface WorkloadUnitHandler{
9       
10        public void handleJob(Job job);
11       
12        public void handleTask(TaskInterface<?> task);
13       
14        public void handleExecutable(ExecTask task);
15
16}
Note: See TracBrowser for help on using the repository browser.