Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.remoteclient / src / main / java / org / gvsig / remoteclient / taskplanning / ITaskPlanner.java @ 40769

History | View | Annotate | Download (2.16 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.remoteclient.taskplanning;
25

    
26
/**
27
 * <p>
28
 * ITaskPlanner provides an interface to program your own task planning. It gives
29
 * you operations for pick a task from the queue according on the criteria that
30
 * you designed.<br>
31
 * </p>
32
 * <p>
33
 * The simplest implementation of ITaskPlanner would be a FIFO task planner (see
34
 * FIFOTaskPlanner.java) which takes jobs from a task queue in the same order
35
 * they were put. But any kind of planner is possible (SJF, LIFO, RoundRobin, etc.). 
36
 * </p>
37
 * @author jaume dominguez faus - jaume.dominguez@iver.es
38
 *
39
 */
40
public interface ITaskPlanner {
41
        /**
42
         * Takes the next task to be executed.
43
         * @return IRunnableTask representing the next task to be executed
44
         */
45
        public IRunnableTask nextTask();
46
        
47
        /**
48
         * Takes the previous executed task. Notice that it may or may not have
49
         * sense for specific implementations. For example, in a FIFO-like planner,
50
         * the task is taken from the queue, executed until it is finished and 
51
         * removed from the queue. So, there is no previous task.
52
         * 
53
         * @return IRunnableTask representing the previous executed task, or null
54
         * if none.
55
         * @deprecated (probably this is unuseful and i'll remove it)
56
         */
57
        public IRunnableTask previousTask();
58
}