Tagged Questions

0
votes
4answers
287 views

Java 5: java.util.concurrent.FutureTask - Semantics of cancel() and done()

I am currently hunting a nasty bug in a multi-threaded environment using FutureTasks and Executors. The basic idea is this to have a fixed number of threads execute individual Futu …
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 …
3
votes
4answers
87 views

ExecutorService’s surprising performance break-even point — rules of thumb?

I'm trying to figure out how to correctly use Java's Executors. I realize submitting tasks to an ExecutorService has its own overhead. However, I'm surprised to see it is as high …
1
vote
4answers
87 views

ScheduledExecutorService with variable delay

Suppose I have a task that is pulling elements from a java.util.concurrent.BlockingQueue and processing them. public void scheduleTask(int delay, TimeUnit timeUnit) { schedule …
0
votes
1answer
44 views

Gridgain executor service

What are the advantages of using GridGain's GridExecutorService to execute jobs remotely vs using the @Gridify annotation? You can pass an instance of java.lang.concurrent.Executo …
0
votes
2answers
95 views

Knowing when all threads complete and dealing with exceptions

Hi, I am using the Executor framework to kick off several threads using a threadpool i.e newFixedThreadPool. I use threadpool.submit(aThread) to submit jobs to be executed by the …
0
votes
4answers
181 views

Java Executors: how can I stop submitted tasks?

I have submitted a task using executors and I need it to stop after some time (e.g. 5 minutes). I have tried doing like this: for (Future<?> fut : e.invokeAll(tasks, 300, …
1
vote
4answers
518 views

Help with java executors: wait for task termination.

I need to submit a number of task and then wait for them until all results are available. Each of them adds a String to a Vector (that is synchronized by default). Then I need to s …
1
vote
4answers
462 views

invokeAll() is not willing to acept a Collection<Callable<T>>

Hey I fail to understand why this code won't compile ExecutorService executor = new ScheduledThreadPoolExecutor(threads); class DocFeeder implements Callable<Boolean> {... …
0
votes
2answers
365 views

Porting code from using timers to scheduledexecutorservice

I am trying to port code from using java timers to using scheduledexecutorservice I have the following use case class A { public boolean execute() { try { …
2
votes
5answers
481 views

Searching for Generic Asynchronous Java Job Execution Framework / Library

I am looking for a generic asynchronous Java job execution framework that could handle Callables or Runnables. It would be similar to java.util.concurrent.ExecutorService, (and pos …
2
votes
3answers
528 views

what would make a single task executor stop processing tasks?

I'm using a java.util.concurrent.ExecutorService that I obtained by calling Executors.newSingleThreadExecutor(). This ExecutorService can sometimes stop processing tasks, even thou …
0
votes
3answers
560 views

Can a java fixedThreadPool be used by multiple threads

I have a webservice that does multiple small calculations before returning the result. I want to use the ExecutorService provided by Executors.newFixedThreadPool() as a way to impl …
0
votes
2answers
178 views

java.util.concurrent

im trying to kick off a Runnable classes run method however i keep getting a NullPointerException, Im using WebSpheres commonj.workmanager to get an instance of executorService.th …