Project

General

Profile

1
package eu.dnetlib.enabling.tools.blackboard;
2

    
3
/**
4
 * Blackboard action status.
5
 *
6
 * @author marko
7
 */
8
public enum ActionStatus {
9
	/**
10
	 * The job/action is assigned but not jet taken into started execution.
11
	 */
12
	ASSIGNED,
13
	/**
14
	 * The job/action is ongoing.
15
	 */
16
	ONGOING,
17
	/**
18
	 * The job/action is completed successfully.
19
	 */
20
	DONE,
21
	/**
22
	 * The job/action is completed with failure.
23
	 */
24
	FAILED
25
}
(3-3/27)