Sample of progress for a given time.
| 924 | |
| 925 | |
| 926 | class ProgressSample(NamedTuple): |
| 927 | """Sample of progress for a given time.""" |
| 928 | |
| 929 | timestamp: float |
| 930 | """Timestamp of sample.""" |
| 931 | completed: float |
| 932 | """Number of steps completed.""" |
| 933 | |
| 934 | |
| 935 | @dataclass |