[Solved] multithreading in java

[ad_1] Update: Howard is right, my first example was wrong. I verified this works if you change your active() method: service = Executors.newScheduledThreadPool(50); new Thread() { public void run() { long nextTime = System.currentTimeMillis(); while (true) { service.submit(runnable); long waitTime = nextTime – System.currentTimeMillis(); Thread.sleep(Math.max(0, waitTime)); nextTime += 200; } } }.start(); 3 [ad_2] solved … Read more