Hello I have a running akka cluster that did some initial work and now this cluster is in iddle state.
Each actor has an initialized context. I am using receptionlist.
Everything works very well.
I wanted to know the best approach to trigger now a specifc actor in the network.
My solution is running in a cluster mode so I don’t want this job to create a new cluster and to join it before making the call. Just a simple call as we can do if we call a service on a network
Should I use an http implementation or is there a way to use a simple rpc call?
thanks