Something must call the dispatcher first. How do you call 123 at the bottom?
i thought every actor would print if one of them call the event…
Only 1 would print, the one that was called.
That’s the correct behaviour. Each dispatcher is unique. If you want all actors to respond to a single dispatch call, you’d need to register all to the same dispatcher call.
how would I do that?
- in the actor:

- someplace outside that
actor:
This can also be done the other way round. Each actor can reach out to whomever is calling the dispatcher and register with it. I’ll admit that I’m not 100% what the end goal is that you want to achieve, though. The above is just generic dispatcher shenanigans.
Thank you for explaining.I have no a goal
.I just accidentally found the behavior and try to figure out.


