Provides a set of read-only constants that specify the status of the queue-related operation. There is no constant that indicates a completion state. When an operation completes successfully, the item is removed from the queue.

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

ToggleSyntax

Visual Basic (Declaration)
Public Enumeration QueueEntryStatus
C#
public enum QueueEntryStatus
Visual C++
public enum class QueueEntryStatus
JavaScript
FileNet.Api.Constants.QueueEntryStatus = function();
FileNet.Api.Constants.QueueEntryStatus.createEnum('FileNet.Api.Constants.QueueEntryStatus', false);

ToggleMembers

TypeMember nameDescription
WAITING
Indicates that the operation has not started on the queue item.
RETRY_WAIT
Indicates that the operation failed and is being retried on the queue item.
FAILED
Indicates that the operation failed on the queue item.
IN_PROGRESS
Indicates that the operation is in progress.

ToggleSee Also