JobStatus Enumeration

Summary

Indicates the status of a job.

Syntax
C#
VB
C++
public enum JobStatus  
  
Public Enum JobStatus  
   Inherits System.Enum 
public enum class JobStatus  

Members
ValueMemberDescription
0NotFoundThe job was not found in the Job Processor Database.
1NewThe job is in queue, and ready to be processed. A job is marked as new when it is added, or when ResetJob is called.
2QueriedThe job has been removed from the queue, and is being prepared for processing.
3StartedThe job is currently being processing.
4CompletedThe job has been successfully processed. A job is marked as completed when SetCompletedStatus is called.
5FailedThe job encountered errors during processing. A job is marked as failed when SetFailureStatus is called.
6AbortedThe job was aborted during processing. A job is marked as aborted when SetAbortedStatus is called.

Remarks

For more information, refer to Creating Job Processor Worker Assemblies.

Requirements

Target Platforms

Help Version 20.0.2020.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.