Can you spot the bug? This will throw an java.lang.OutOfMemoryError.
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class TestTheads {
public static void main(String[] args) {
ExecutorService executorService = Executors.newFixedThreadPool(1);
while(true) {
executorService.submit(new Runnable() {
public void run() {
try {
Thread.sleep(10);
} catch (InterruptedException e) {
}
}
});
}
}
}
The bug is that I call executorService.submit() instead of executorService.execute(), because submit() returns a Future object I'm ignoring. With execute(), this program will actually run forever.
However, one does not always have the luxury of having an execute() method, like when using a ScheduledExecutorService:
public static void main(String[] args) {
// this will FAIL because I ignore the ScheduledFuture object
ScheduledExecutorService executorService = Executors.newScheduledThreadPool(2);
while(true) {
executorService.scheduleWithFixedDelay(new Runnable() {
public void run() {
try {
Thread.sleep(10);
} catch (InterruptedException e) {
}
}
}, 1, 1, TimeUnit.SECONDS);
}
}
What is one supposed to do with tasks that don't return anything, only compute?
Any ideas would be grateful appreciated!
EDIT: ThreadPoolExecutors purge() looked promising, but it only purges cancelled tasks.
get()on the returnedFuture? Just add.get()before the ending;. Although I suppose that would block and defeat the whole purpose of using theExecutorService. You'd have to save theFuturereferences, iterate over them and callget(). – laz Apr 28 '11 at 21:49ExecutorService. Some of the workarounds I've done rely on storing and iterating, though. – The Alchemist Apr 28 '11 at 23:00