Class DbBatchJob
Defines a batch job
Inheritance
System.Object
DbBatchJob
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: ImageVault.Core.Common.DbEntities
Assembly: ImageVault.Core.dll
Syntax
public class DbBatchJob
Constructors
DbBatchJob()
Declaration
public DbBatchJob()
Properties
Configuration
Configuration (JSON) for the job
Declaration
public string Configuration { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
The id of the batch job instance
Declaration
public int Id { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
LastUpdated
When the batch job was last updated
Declaration
public DateTime? LastUpdated { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Message
Any message that the job produces
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Progress
The progress (0-100) of the job
Declaration
public int Progress { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Started
When the job was started
Declaration
public DateTime? Started { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
Status
Current status of the job
Declaration
public BatchJobStatus Status { get; set; }
Property Value
Type | Description |
---|---|
BatchJobStatus |
Type
The type of batchjob
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
System.String |