My External program from windows PC calls my jar thrice with different command line arguments like
java -jar xxx.jar RT 1 runandroid ad.sh
java -jar xxx.jar RT 2 runlke adf.sh
java -jar xxx.jar RT 3 dfdf ssss.sh
my program is called but it runs in a sequential manner I want it to run in the parallel way how to achieve this.
I tried implementing the method with RT inside thread using runnable interface but still it works in sequential manner only