What is the use of Akka HTTP, gRPC and Cluster client ?
As per my understanding Cluster client used to communicate with other Clusters by creating receptionist.
I have red the documentation where ClusterClient.Send will deliver message to one recipient with a matching path, if any such exists. If several entries match the path the message will be delivered to one random destination.
But Instead of delivering it randomly I want to route the message, I should have the control on delivering the message instead of random delivery
Is it possible to do with cluster client or should I go with something else ?
I went through Akka HTTP and Akka gRPC and I didn’t get clear picture on what it is ?