¿Cómo puedo hacer que FutureTask regrese después de TimeoutException?

En el código a continuación, detecto una TimeoutException después de 100 segundos como se esperaba. En este punto esperaría que el código saliera de main y que el programa terminara, pero sigue imprimiendo en la consola. ¿Cómo puedo hacer que la tarea deje de ejecutarse después del tiempo de espera?

private static final ExecutorService THREAD_POOL = Executors.newCachedThreadPool();

private static <T> T timedCall(Callable<T> c, long timeout, TimeUnit timeUnit) throws InterruptedException, ExecutionException, TimeoutException {
    FutureTask<T> task = new FutureTask<T>(c);
    THREAD_POOL.execute(task);
    return task.get(timeout, timeUnit);
}


public static void main(String[] args) {

    try {
        int returnCode = timedCall(new Callable<Integer>() {
            public Integer call() throws Exception {
                for (int i=0; i < 1000000; i++) {
                    System.out.println(new java.util.Date());
                    Thread.sleep(1000);
                }
                return 0;
            }
        }, 100, TimeUnit.SECONDS);
    } catch (Exception e) {
        e.printStackTrace();
        return;
    }


}

Respuestas a la pregunta(3)

Su respuesta a la pregunta