• Blog
  • Changelog
  • Follow us on GitHubFollow us on XJoin our Discord server
  • Blog
  • GitHub
  • Releases
  • Getting started

    • Overview
  • Library

    • Getting started
    • Array
    • Result
    • Dependency injection
    • Resource management
    • Task
    • Type
    • Conventions
  • Local-first

    • Getting started
    • Playgrounds
    • Examples
    • Owners
    • Relay
    • Migrations
    • Time travel
    • Indexes
    • Protocol
    • Privacy
    • FAQ
  • Other

    • API reference
    • Comparison
    • Showcase
    • Changelog

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"));
Markdown for LLMs

© 2026 Evolu

Follow us on GitHubFollow us on XJoin our Discord server