I have a Java implementation of Akka Actor as shown below:
public class Rule1Actor extends UntypedActor{
@Override
public void onReceive(Object message){
......
}
}
I need to call some python script
within the onReceive
method. I wanted the python code to be an actor again.
In that case, it would be implemented using Pykka.
If so, how would I tell/ask between this Java-actor and Pykka-actor?