cron-jobs

tarafından rivet-dev

Rivet Aktörleri ile dayanıklı cron işleri: schedule.after ve schedule.at zamanlayıcıları yeniden başlatmalardan ve çökmelerden kurtulur, ayrıca yinelenen işleri yeniden etkinleştirme ve idempotent işleyiciler.

npx skills add https://github.com/rivet-dev/skills --skill cron-jobs

Cron Jobs and Scheduled Tasks

IMPORTANT: Before doing anything, you MUST read BASE_SKILL.md in this skill's directory. It contains essential guidance on debugging, error handling, state management, deployment, and project setup. Those rules and patterns apply to all RivetKit work. Everything below assumes you have already read and understood it.

Working Examples

If you need a reference implementation, read the raw working example code in these templates:

Rivet Actor schedules are durable actor-local timers. They survive actor sleep, restarts, upgrades, deploys, and crashes without a separate cron service.

Choose a schedule type

APIUse it for
c.schedule.after(delayMs, action, ...args)One-time work after a relative delay.
c.schedule.at(timestamp, action, ...args)One-time work at an exact Unix timestamp in milliseconds.
c.cron.set({ ... })Named calendar recurrence in an IANA timezone.
c.cron.every({ ... })Named fixed intervals of at least 5 seconds.

All callbacks are ordinary actions on the same actor. Keep the action name fixed in your code rather than accepting an arbitrary action name from a client.

See Schedule & Cron for the full API, history, cancellation, failure behavior, and limits.

Calendar job

Use cron.set instead of manually re-arming a one-shot action:

Install fixed background jobs in onCreate so setup runs once per actor. The job name remains an upsert key, so a later cron.set call updates the existing job rather than creating a duplicate. cron.set also handles timezone and daylight-saving transitions.

Fixed-interval job

Use cron.every for frequent work such as presence sweeps or cache refreshes:

await c.cron.every({
  name: "presence-sweep",
	interval: 15_000, // Minimum 5 seconds.
  action: "sweepPresence",
  maxHistory: 25,
});

Intervals remain anchored to scheduled deadlines rather than drifting by the action's runtime. If a previous run is still active, the overlapping occurrence is skipped.

Cancellation and updates

Keep the ID returned by a one-shot schedule when it may need cancellation:

const id = await c.schedule.after(60_000, "expireSession", sessionId);
await c.schedule.cancel(id);

Recurring jobs are managed by name:

await c.cron.delete("presence-sweep");

Calling cron.set or cron.every again with the same name replaces its configuration.

Failure and idempotency

Keep scheduled actions idempotent when duplicate work would be harmful. See Execution behavior for retry behavior and workflow guidance.

Topology

Use a singleton actor key for one global job, such as jobs["daily-report"]. Use an actor per user or resource for isolated reminders, trials, billing periods, or other per-entity schedules.

Reference Map

Actors

Cli

Clients

Cookbook

Deploy

General

Self Hosting

rivet-dev tarafından daha fazla skill

ai-agent
rivet-dev
Kalıcı belleğe sahip bir AI ajan arka ucu oluşturun: her konuşma için bir Rivet Actor, sıraya alınmış mesaj işleme ve gerçek zamanlı olaylar olarak akan LLM yanıtları.
official
ai-agent-workspace
rivet-dev
Her AI ajanına kendi bilgisayarını verin: bir dosya sistemi, süreçler, kabuklar, ağ bağlantısı ve hafif bir işlem içi üzerinde ajan oturumları ile kalıcı bir çalışma alanı…
official
chat-room
rivet-dev
Rivet Actors ile gerçek zamanlı bir sohbet odası arka ucu oluşturun: her oda için bir aktör, SQLite destekli mesaj geçmişi ve bağlı her istemciye WebSocket yayını.
official
collaborative-text-editor
rivet-dev
Yjs CRDT'leri ve Rivet Aktörleri ile işbirlikçi bir metin düzenleyici arka ucu oluşturun: belge başına aktörler senkronizasyon ve farkındalık güncellemelerini iletir ve anlık görüntüleri kalıcı hale getirir.
official
live-cursors
rivet-dev
Rivet Actors ile canlı imleçler ve çok oyunculu varlık: bağlantı başına imleç durumu, olaylar veya ham WebSocket'ler üzerinden gerçek zamanlı güncellemeler ve hız sınırlama.
official
per-tenant-database
rivet-dev
Her kiracı için bir Rivet Actor ile çok kiracılı veri izolasyonu: actor anahtarı kiracı kimliğidir, böylece her kiracı kendi izole edilmiş veri kümesine ve geçişlere sahip olur.
official
rivetkit-client-javascript
rivet-dev
JavaScript istemcisi, durumsuz veya durumlu bağlantılarla Rivet Actors'a bağlanmak için kullanılır. Tarayıcı, Node.js ve Bun ortamlarını destekler; ortam değişkenleri veya açık yapılandırma yoluyla otomatik uç nokta algılama sunar. İki etkileşim modu sağlar: bağımsız istekler için durumsuz eylem çağrıları ve gerçek zamanlı olay abonelikleriyle durumlu bağlantılar. onRequest veya onWebSocket işleyicilerini uygulayan aktörler için düşük seviyeli HTTP ve WebSocket erişimi içerir. Bileşik dizi tabanlı...
official
rivetkit-client-react
rivet-dev
React istemcisi, Rivet Actors'a bağlanmak için hook'lar ve gerçek zamanlı durum yönetimi sağlar. createRivetKit() ile tür belirtilmiş hook'lar oluşturun ve useActor() ile anahtarlar ve isteğe bağlı parametreler kullanarak aktör örneklerine bağlanın. useEvent() ile aktör olaylarına abone olun ve connStatus ile error durumları aracılığıyla bağlantı yaşam döngüsünü izleyin. Stateless tek seferlik çağrılar, aktör keşif yöntemleri (get, getOrCreate, create, getForId) ve düşük seviyeli HTTP/WebSocket erişimi için createClient() kullanın. Bileşik dizi anahtarlarını destekler...
official