Skip to content

Commit 73acbf3

Browse files
committed
Clarify that using channels is not enforced
The SDK doesn't enforce the use of channels, but it's the recommended way to communicate between actors and the one used by SDK actors. Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 0776e69 commit 73acbf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/frequenz/sdk/actor/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
the traditional actor programming model but also has some unique features:
3333
3434
- **Message Passing:** Like traditional actors, our Actor class communicates
35-
through message passing. To do that they use [channels][frequenz.channels]
36-
for communication.
35+
through message passing. Even when no particular message passing mechanism is
36+
enforced, the SDK uses [Frequenz Channels][frequenz.channels] for communication.
3737
3838
- **Automatic Restart:** If an unhandled exception occurs in an actor's logic
3939
(`_run` method), the actor will be automatically restarted. This ensures

0 commit comments

Comments
 (0)