API reference › @evolu/common › Task › RetryAttempt
Defined in: packages/common/src/Task.ts:1931
Info passed to retry RetryOptions.onRetry callback.
Extends
ScheduleStep<Output>
Properties
attempt
readonly attempt: number & Brand<"Int"> & Brand<"NonNegative"> & Brand<"Positive">;
Defined in: packages/common/src/Schedule.ts:78
The current attempt.
Inherited from
delay
readonly delay: number & Brand<"Int"> & Brand<"NonNegative"> & Brand<"LessThan281474976710655"> & Brand<"Millis">;
Defined in: packages/common/src/Schedule.ts:84
Delay before this step executes.
Inherited from
error
readonly error: E;
Defined in: packages/common/src/Task.ts:1932
output
readonly output: Output;
Defined in: packages/common/src/Schedule.ts:81
Output from the Schedule step.