Provides a set of constants that are used by the JobStatus property of an IndexJob object to identify the status of an index job.
Namespace:
FileNet.Api.ConstantsAssembly: FileNet.Api (in FileNet.Api.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Enumeration IndexJobStatus |
C# |
---|
public enum IndexJobStatus |
Visual C++ |
---|
public enum class IndexJobStatus |
JavaScript |
---|
FileNet.Api.Constants.IndexJobStatus = function(); FileNet.Api.Constants.IndexJobStatus.createEnum('FileNet.Api.Constants.IndexJobStatus', false); |
Members
Type | Member name | Description |
---|---|---|
TERMINATED_ABNORMALLY |
The indexing job was terminated before completion due to an unexpected error.
| |
TERMINATED_NORMALLY |
The indexing job completed normally.
| |
PENDING |
The indexing job request has been submitted and is currently pending.
| |
PAUSED |
A request to pause the indexing job has been submitted (IndexJob.JobPauseRequested) and the indexing job has been paused.
| |
IN_PROGRESS |
The indexing job is currently in progress.
| |
ABORT_IN_PROGRESS |
A request to cancel the indexing job has been submitted (IndexJob.JobAbortRequested), and the cancel operation is
currently in progress.
| |
CANCELED |
The indexing job was canceled by an administrator.
|