| Home | Trees | Indices | Help |
|---|
|
|
Enumeration describing state of processing of a certain node
|
|||
|
|||
| NodeState enum |
|
||
|
|||
OPEN = 0Node has not been yet traversed/visited by any crawler. |
|||
PROCESSING = 1Node is currently processed by some crawler. |
|||
VISITED = 2Node has been visited by at least one crawler. |
|||
CLOSED = 3The leaf node has been processed or all the children of the internal node are in a CLOSED state. |
|||
ERROR = 41) A crawler was not able to analyze this node or 2) all children nodes of this node are in a state of CLOSED or ERROR |
|||
MAX_ENUM_INDEX = 4A purely technical field indicating the maximal enumeration index |
|||
|
|||
|
|
|
|||
OPENNode has not been yet traversed/visited by any crawler. This is the initial state of each node.
|
VISITEDNode has been visited by at least one crawler. It is an internal node. There is at least one child of this node that is in a state of OPEN or VISITED or PROCESSING.
|
CLOSEDThe leaf node has been processed or all the children of the internal node are in a CLOSED state. Traversing children of this node by a new crawler would be pointless.
|
| Home | Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Sun Sep 25 22:18:20 2011 | http://epydoc.sourceforge.net |