Replies: 1 comment 1 reply
-
Top-level actors can be defined at startup. To have parent-child relationships between actors, you'll need to declare the children from the parent, of course. This can be done as needed while the application runs, including immediately after the parent actor is created. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have potentially an odd question.
I need to build a little simulation of a material coming into a pipeline, moving though various processes with branching effects and finally being deposited somewhere.
A colleague recommended akka as we can easily represent the tree structure of the connected pipes i.e.
ingestion -> pipe -> material splitter -> material 1 goes to store 1
-> material 2 goes to the bin
Because the actors are known before the application starts I would want to setup the tree of actors before I start sending events.
This leads to some interesting questions:
Beta Was this translation helpful? Give feedback.
All reactions