I\'m looking for the simplest, most straightforward way to implement the following:
Executors.newFixedThreadPool(int)
Executor executor = Executors.newFixedThreadPool(n); Runnable runnable = new Runnable() { public void run() { // do your thing here } } executor.execute(runnable);