Identifies the current status of an indexing job.

If an index job terminates abnormally for any reason, indexing data for some objects will be in two collections if either a base class or a collection is indexed. The index job for this collection or class should be resubmitted after the cause of the abnormal termination is corrected.

Note: When an index job is aborted and either the index job does not include all subclasses of a base class, or the index job was for single item indexes, no duplicate index items exist because these types of index jobs perform individual object deletes from the collection (rather than deleting the entire collection at the end of a successfully completed index job).


Namespace: FileNet.Api.Constants
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Enum IndexJobStatus
C#
public enum IndexJobStatus
C++
public enum class IndexJobStatus
J#
public enum IndexJobStatus
JScript
public enum IndexJobStatus

Members

Member NameDescription
TERMINATED_ABNORMALLYThe indexing job was terminated before completion.
ABORT_IN_PROGRESSA request to abort the indexing job has been submitted (IndexJob.setJobAbortRequested), and the abort operation is currently in progress.
TERMINATED_NORMALLYThe indexing job completed normally.
IN_PROGRESSThe indexing job is currently in progress.
PENDINGThe indexing job request has been submitted and is currently pending.

See Also