[Solved] Run java function in thread
[ad_1] As a partial solution for the functions / methods (if they don’t need arguments) you can use Threads or an ExecutorService and method references. If you need arguments you will have to write lambda expressions – see the method t3 and it’s start for an example. public class Test { public void t1() { … Read more