Table of Contents

Class TaskInfo

Namespace
FoundationaLLM.Common.Tasks
Assembly
FoundationaLLM.Common.dll

Provides the context for a task running in the task pool.

public class TaskInfo
Inheritance
TaskInfo
Inherited Members
Extension Methods

Properties

PayloadId

The unique identifier of the payload processed by the task.

public required string PayloadId { get; set; }

Property Value

string

StartTime

The start time of the task.

public required DateTimeOffset StartTime { get; set; }

Property Value

DateTimeOffset

Task

The Task being run.

public required Task Task { get; set; }

Property Value

Task