Class BatchResult
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
Results
Per-job results in the same order as the input jobs.
public IReadOnlyList<BatchJobResult> Results { get; init; }
Property Value
SharedPages
Shared atlas pages when using Combined. Null for Separate mode.
public IReadOnlyList<AtlasPage>? SharedPages { get; init; }
Property Value
Succeeded
Number of jobs that completed successfully.
public int Succeeded { get; }
Property Value
TotalElapsed
Total wall-clock time for the entire batch.
public TimeSpan TotalElapsed { get; init; }