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.Constants
Assembly:
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 |
|---|---|---|
| IN_PROGRESS |
The indexing job is currently in progress.
| |
| PAUSED |
A request to pause the indexing job has been submitted (IndexJob.JobPauseRequested) and the indexing job has been paused.
| |
| TERMINATED_NORMALLY |
The indexing job completed normally.
| |
| 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.
| |
| PENDING |
The indexing job request has been submitted and is currently pending.
| |
| TERMINATED_ABNORMALLY |
The indexing job was terminated before completion due to an unexpected error.
|