API reference › @evolu/common › Schedule › always
function always<A>(value: A): Schedule<A>;
Defined in: packages/common/src/Schedule.ts:503
A schedule that always outputs a constant value.
Never stops — combine with take or maxElapsed to limit.
Example
// Always output "retry"
const labeled = always("retry");
// Combine with timing
const withLabel = intersectSchedules(exponential("100ms"), always("backoff"));