Class JobDefinition
- Namespace
- JobFlow.Models.Jobs.Definitions
- Assembly
- JobFlow.Models.dll
Defines a Job to be created after executing the rule engine(s).
public abstract class JobDefinition
- Inheritance
-
JobDefinition
- Derived
Constructors
JobDefinition(string)
Creates a Job definition with the specified name.
public JobDefinition(string name)
Parameters
name
string
Properties
ExternalId
Gets the External ID for the Job.
public Guid ExternalId { get; }
Property Value
Remarks
This ID is auto-generated by the system.
Name
Gets the Job name.
public string Name { get; }
Property Value
RetryCount
The retry count for the new job.
public int RetryCount { get; set; }
Property Value
Remarks
This is automatically increased by the default retry job processing. If you override the default processing, it is up to you to increase this appropriately.