I'm trying to create a ThreadPoolExecutor:

// Thingy implements Delayed and Runnable
ExecutorService executor = new ThreadPoolExecutor(1, 1, 0l, TimeUnit.SECONDS, new DelayQueue<Thingy>());

The compiler is saying "cannot find symbol":

symbol  : constructor ThreadPoolExecutor(int,int,long,java.util.concurrent.TimeUnit,java.util.concurrent.DelayQueue<Thingy>)

but I don't understand — DelayQueue implements BlockingQueue, so shouldn't I be able to use this constructor?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

This is a generics problem. You can't use DelayQueue<Thingy>, it has to be DelayQueue<Runnable> as the ThreadPoolExecutor constructor is not declared to accept queues of sub-types of Runnable.

link|improve this answer
Thanks! Man, generics are crazy. – Avi Flax Mar 9 '11 at 2:25
I still need help. I changed it to new DelayQueue<Runnable>() but that doesn't work either, because DelayQueue is declared as DelayQueue<E extends Delayed> so apparently I need to specify something which extends Delayed but I also need to specify Runnable — this is crazy. Please help! – Avi Flax Mar 9 '11 at 3:32
@Avi Good point, I hadn't spotted that. I think in that case you either have to give up on DelayQueue or use an unchecked cast. If ThreadPoolExecutor had been declared to accept BlockingQueue<? extends Runnable> it all would have been OK. – Dan Dyer Mar 9 '11 at 12:47
feedback

RunnableScheduledFuture is Runnable and Delayed, but it cannot be cast to BlockingQueue<Runnable>. See why at The Java Tutorials

Have a look to ScheduledThreadPoolExecutor, it can schedule commands to run after a given delay, or to execute periodically.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.