Hello,
I want to execute the 'TesterMain.java' as a thread so I need it to 'gracefully' close by completing its execution.
I do not want to use the following code in the ISystemListener
if (client.getStartedStrategies().size() == 0) {
System.exit(0);
}
because it will close the JVM with all the other threads that are also running.
I don't understand why even after the completion of the 'StrategyRunner Thread' that the main thread is still not completed.
Any help will be appreciated.
-David