Table of Contents

Class BatchJobResult

Namespace
KernSmith.Output
Assembly
KernSmith.dll

Result of a single job within a batch.

public sealed class BatchJobResult
Inheritance
BatchJobResult
Inherited Members

Properties

Elapsed

Wall-clock time for this individual job.

public TimeSpan Elapsed { get; init; }

Property Value

TimeSpan

Error

The exception, if the job failed.

public Exception? Error { get; init; }

Property Value

Exception

Index

Zero-based index of this job in the input list.

public int Index { get; init; }

Property Value

int

Result

The generation result, if successful.

public BmFontResult? Result { get; init; }

Property Value

BmFontResult

Success

Whether the job completed successfully.

public bool Success { get; init; }

Property Value

bool