Show / Hide Table of Contents

Class WorkItemInfo

Work item information.

Inheritance
object
WorkItemInfo
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: DNVGL.One.Compute.Core.FlowModel
Assembly: DNVGL.One.Compute.Core.dll
Syntax
public class WorkItemInfo

Properties

View Source

Id

Gets or sets the identifier.

Declaration
public string Id { get; set; }
Property Value
Type Description
string

The identifier.

View Source

JobId

Gets or sets the job identifier.

Declaration
public string JobId { get; set; }
Property Value
Type Description
string

The job identifier.

View Source

Message

Gets or sets the message.

Declaration
public string Message { get; set; }
Property Value
Type Description
string

The message.

View Source

ParentId

Gets or sets the parent identifier.

Declaration
public string ParentId { get; set; }
Property Value
Type Description
string

The parent identifier.

View Source

Progress

Gets or sets the progress.

Declaration
public double Progress { get; set; }
Property Value
Type Description
double

The progress.

Remarks

Progress is defined as a fraction of 1 where 0 = no progress and 1 = complete.

View Source

Status

Gets or sets the job status.

Declaration
public WorkStatus Status { get; set; }
Property Value
Type Description
WorkStatus

The job status.

View Source

WorkDuration

Gets or sets the work duration in milliseconds.

Declaration
public long WorkDuration { get; set; }
Property Value
Type Description
long

The duration of the work in milliseconds.

View Source

WorkItemErrorInfo

Gets or sets WorkItemInfo for the work items that failed during execution.

Declaration
public List<WorkItemInfo> WorkItemErrorInfo { get; set; }
Property Value
Type Description
List<WorkItemInfo>

List of work item information.

Methods

View Source

Clone()

Clones this instance.

Declaration
public WorkItemInfo Clone()
Returns
Type Description
WorkItemInfo

Shallow clone of this instance.

  • View Source
In this article
Back to top Copyright © DNV AS. All rights reserved.