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
Copy file name to clipboardExpand all lines: daprdocs/content/en/js-sdk-docs/js-actors/_index.md
+58-6Lines changed: 58 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ weight: 1000
6
6
description: How to get up and running with Actors using the Dapr JavaScript SDK
7
7
---
8
8
9
-
The Dapr actor package allows you to interact with Dapr virtual actors from a Python application. The below examples demonstarte how to use virtual actors through the Python SDK.
9
+
The Dapr actors package allows you to interact with Dapr virtual actors from a JavaScript application. The below examples demonstarte how to use the JavaScript SDK for interacting with virtual actors.
10
10
11
-
For a more indepth overview of Dapr actors and supported scenarios, visit the [actors overview]({{< ref actors-overview >}}) page.
11
+
For a more in-depth overview of Dapr actors and supported scenarios, visit the [actors overview page]({{< ref actors-overview >}}).
The JS SDK supports actors that can schedule periodic work on themselves by registering either timers or reminders..
124
+
The JS SDK supports actors that can schedule periodic work on themselves by registering either timers or reminders. The main difference between timers and reminders is that the Dapr actor runtime is not retaining any information about timers after deactivation, while persisting the information about reminders using the Dapr actor state provider.
125
+
126
+
This distintcion allows users to trade off between light-weight but stateless timers vs. more resource-demanding but stateful reminders.
75
127
76
-
The scheduling interface of timers and reminders is identical.
128
+
The scheduling interface of timers and reminders is identical. For an more in-depth look at the scheduling configurations see the [actors timers and reminders docs]({{< ref "howto-actors.md#actor-timers-and-reminders" >}}).
0 commit comments