A node that can communicate with the cluster but is not a member of the cluster #207
-
I want to know if this is possible in Goakt. To explain, it is as follows: Members of a goakt cluster are hosting actors on it. The question is whether there is a way for an external client, who is not a member of this cluster but can communicate with this actor system, to send messages to the actors. For reference, in the case of protoactor, the clusterprovier offers I would like to know if this is also possible in Goakt. If there is no direct method, I wonder if there might be an indirect way. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
This seems to be related to the PR. I need a usage example regarding eventstream. |
Beta Was this translation helpful? Give feedback.
-
In this example, the service is running on the same node as the actor system. Does this mean that in this example, I can create an ActorSystem without starting and use it in the service? Is that really possible? |
Beta Was this translation helpful? Give feedback.
@civilizeddev From what you are asking the only apis you can use are:
Those one do not require an actor system running on your system. However you need an actor system running on the remote node you are making the requests to. I hope this answers your question.