You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -12,7 +12,7 @@ Trigger.dev Realtime allows you to trigger, subscribe to, and get real-time upda
12
12
13
13
All Realtime subscriptions require authentication so you can securely trigger and subscribe to runs. See our [authentication guide](/realtime/auth) for more details.
14
14
15
-
## How run subscriptions work
15
+
## What you can do with Realtime
16
16
17
17
You can subscribe to real-time updates for different scopes of runs:
18
18
@@ -21,12 +21,12 @@ You can subscribe to real-time updates for different scopes of runs:
21
21
-**Batch runs** - All runs within a specific batch
22
22
-**Trigger + subscribe combos** - Trigger a task and immediately subscribe to its run (frontend only)
23
23
24
-
Once subscribed, you'll receive the complete [run object](/realtime/run-object) with automatic real-time updates whenever the run changes, including:
24
+
Once subscribed, you'll receive the complete [run object](/realtime/run-object) with automatic real-time updates whenever the [run changes](/realtime/how-it-works#run-changes), including:
25
25
26
26
-**Status changes** - queued → executing → completed, etc.
27
-
-**Metadata updates** - Custom progress tracking, status updates, user data, etc. ([backend](/realtime/backend/metadata) | [React hooks](/realtime/react-hooks/realtime#using-metadata))
27
+
-**Metadata updates** - Custom progress tracking, status updates, user data, etc. ([React hooks](/realtime/react-hooks/subscribe#using-metadata) | [backend](/realtime/backend/metadata))
28
28
-**Tag changes** - When [tags](/tags) are added or removed from the run
29
-
-**Stream data** - Real-time data chunks from your tasks, perfect for AI/LLM streaming ([backend](/realtime/backend/streams) | [React hooks](/realtime/react-hooks/streams))
29
+
-**Stream data** - Real-time data chunks from your tasks, perfect for AI/LLM streaming ([React hooks](/realtime/react-hooks/streams) | [backend](/realtime/backend/streams))
30
30
31
31
## Realtime approaches
32
32
@@ -41,17 +41,3 @@ Use our React hooks to build real-time UIs that update as runs execute. Ideal fo
41
41
Use our server-side SDK to subscribe to runs from your backend code, other tasks, or serverless functions. Perfect for triggering workflows, sending notifications, or updating databases based on run status changes.
0 commit comments