Enum Class ActivityEvent.ActivityStatus

java.lang.Object
java.lang.Enum<ActivityEvent.ActivityStatus>
org.codice.ddf.activities.ActivityEvent.ActivityStatus
All Implemented Interfaces:
Serializable, Comparable<ActivityEvent.ActivityStatus>, Constable
Enclosing class:
ActivityEvent

public static enum ActivityEvent.ActivityStatus extends Enum<ActivityEvent.ActivityStatus>
Status enumerations for an activity. Describes the various states an activity can be in.

STARTED - Initial status, the activity is in the process of starting up and is not RUNNING yet.
RUNNING - Main state used to describe that the activity is currently active and performing the activity.
FINISHED - The activity has finished its processing and will not send any more statuses.
STOPPED - The activity has stopped running before finishing and cannot be resumed.
PAUSED - The activity has been paused before finishing and can be resumed.
FAILED - The activity suffered a failure before finishing and cannot be resumed.