Class TaskResult
Result of an executed task
Inherited Members
Namespace: Cognite.Extractor.Common
Assembly: Cognite.Common.dll
Syntax
public class TaskResult
Properties
| Edit this page View SourceCompletionTime
Time of completion. Null if the task has not completed.
Declaration
public DateTime? CompletionTime { get; }
Property Value
Type | Description |
---|---|
DateTime? |
Exception
Triggered exception. Null if the task completed successfully or if it is not complete.
Declaration
public Exception? Exception { get; set; }
Property Value
Type | Description |
---|---|
Exception |
Index
Index of the originally scheduled task.
Declaration
public int Index { get; }
Property Value
Type | Description |
---|---|
int |
IsCompleted
True if the task has completed.
Declaration
public bool IsCompleted { get; }
Property Value
Type | Description |
---|---|
bool |
StartTime
Time the task was scheduled.
Declaration
public DateTime StartTime { get; }
Property Value
Type | Description |
---|---|
DateTime |
Task
Executed task. Null if not completed.
Declaration
public Task? Task { get; }
Property Value
Type | Description |
---|---|
Task |