Tagged Questions

3
votes
5answers
1k views

Any good Spring threading with a TaskExecutor examples?

I'm trying to get a handle on how to implement threading in a Java application that uses Spring for transaction management. I've found the TaskExecutor section in the Spring docume …
5
votes
4answers
123 views

How to properly catch RuntimeExceptions from Executors?

Say that I have the following code: ExecutorService executor = Executors.newSingleThreadExecutor(); executor.execute(myRunnable); Now, if myRunnable throws a RuntimeExcpetion, h …
4
votes
7answers
65 views

Removing all queued tasks of an ThreadPoolExecutor

Hi StackOverflow, i have this rather simple question about the ThreadPoolExecutor. I have the following situation: I have to consume objects from a queue, create the appropiate wo …
4
votes
3answers
81 views

Unhandled exceptions with Java scheduled executors

Hi, I have the following issue and I would like to know what exactly happens. I am using Java's ScheduledExecutorService to run a task every five minutes. It works very well. Exec …
1
vote
1answer
31 views

Java Scheduled Executor: Does it guarantee to not run in paralell if task hast not yet finished

Hello, does anyone know if the following java Method in the java.util.concurrent Package ScheduledExecutorService.html#scheduleAtFixedRate() absolutely guarantees, that the Runna …
2
votes
2answers
145 views

Executor and Daemon in Java

Hi, I have a MyThread object which I instantiate when my app is loaded through the server, I mark it as a Daemon thread and then call start() on it. The thread is meant to sit and …
2
votes
4answers
750 views

When should we use Java’s Thread over Executor?

Executor seems like a clean abstraction. When would you want to use Thread directly rather than rely on the more robust executor?
1
vote
1answer
132 views

ThreadPool is to Executor like Polling is to ???

Java's Executor is (as far as I understand it) an abstraction over the ThreadPool concept - something that can accept and carry out (execute) tasks. I'm looking for a similar exce …
1
vote
2answers
633 views

newCachedThreadPool() V/s newFixedThreadPool

newCachedThreadPool() V/s newFixedThreadPool(...) when to use and which is better in terms of resource utilisation?
2
votes
5answers
624 views

Java executors: how to be notified, without blocking, when a task completes?

Say I have a queue full of tasks which I need to submit to an executor service. I want them processed one at a time. The simplest way I can think of is to: Take a task from the …