I would like to work with multiple threads to execute some code parallel without the scenario freezing. Simply using java.lang.Thread may work fine offline, but online "Thread.start()" simply calls "Thread.run()" with does not result in an async execution. Does anybody have a workaround that works online?

