Table of Contents

Class BatchResult

Namespace
KernSmith.Output
Assembly
KernSmith.dll

Aggregated result of a batch font generation run.

public sealed class BatchResult
Inheritance
BatchResult
Inherited Members

Properties

Failed

Number of jobs that failed.

public int Failed { get; }

Property Value

int

Results

Per-job results in the same order as the input jobs.

public IReadOnlyList<BatchJobResult> Results { get; init; }

Property Value

IReadOnlyList<BatchJobResult>

SharedPages

Shared atlas pages when using Combined. Null for Separate mode.

public IReadOnlyList<AtlasPage>? SharedPages { get; init; }

Property Value

IReadOnlyList<AtlasPage>

Succeeded

Number of jobs that completed successfully.

public int Succeeded { get; }

Property Value

int

TotalElapsed

Total wall-clock time for the entire batch.

public TimeSpan TotalElapsed { get; init; }

Property Value

TimeSpan