The Encog Project

org.encog.bot.spider
Class WorkloadStatus

java.lang.Object
  extended by org.encog.bot.spider.WorkloadStatus

public final class WorkloadStatus
extends java.lang.Object

The status that an individual workload item is in.

Author:
jheaton

Field Summary
static char ERROR
          The workload item has been processed, but an error happened.
static char PROCESSED
          The workload item has been processed successfully.
static char QUEUED
          The workload item is waiting to be processed.
static char WORKING
          The workload item is in a processing state.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

QUEUED

public static final char QUEUED
The workload item is waiting to be processed.

See Also:
Constant Field Values

PROCESSED

public static final char PROCESSED
The workload item has been processed successfully.

See Also:
Constant Field Values

ERROR

public static final char ERROR
The workload item has been processed, but an error happened.

See Also:
Constant Field Values

WORKING

public static final char WORKING
The workload item is in a processing state.

See Also:
Constant Field Values

The Encog Project