-
I want to be able to use call! Macro on an ActorCell, using the registry::where_is to get a registered actor, then work with the actor using a call macro. I can do through an ActorRef, but I need to use the registry to get an ActorRef. |
Beta Was this translation helpful? Give feedback.
Answered by
slawlor
Jun 5, 2023
Replies: 1 comment
-
You need to first cast the cell to a ref with .into() of the correct message type. The macros are all built around actorrefs, not cells presently. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
slawlor
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You need to first cast the cell to a ref with .into() of the correct message type. The macros are all built around actorrefs, not cells presently.