Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 92603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:12:46+00:00 2026-05-10T23:12:46+00:00

I fail to understand why this code won’t compile ExecutorService executor = new ScheduledThreadPoolExecutor(threads);

  • 0

I fail to understand why this code won’t compile

ExecutorService executor = new ScheduledThreadPoolExecutor(threads);  class DocFeeder implements Callable<Boolean> {....}  ...  List<DocFeeder> list = new LinkedList<DocFeeder>(); list.add(new DocFeeder(1)); ... executor.invokeAll(list); 

The error msg is:

The method invokeAll(Collection<Callable<T>>) in the type ExecutorService is  not applicable for the arguments (List<DocFeeder>)   

list is a Collection of DocFeeder, which implements Callable<Boolean> – What is going on?!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T23:12:46+00:00Added an answer on May 10, 2026 at 11:12 pm

    Just to expand on saua’s answer a little…

    In Java 5, the method was declared as:

    invokeAll(Collection<Callable<T>> tasks)  

    In Java 6, the method is declared as:

    invokeAll(Collection<? extends Callable<T>> tasks)  

    The wildcarding difference is very important – because List<DocFeeder> is a Collection<? extends Callable<T>> but it’s not a Collection<Callable<T>>. Consider what would happen with this method:

    public void addSomething(Collection<Callable<Boolean>> collection) {     collection.add(new SomeCallable<Boolean>()); } 

    That’s legal – but it’s clearly bad if you can call addSomething with a List<DocFeeder> as it will try to add a non-DocFeeder to the list.

    So, if you are stuck with Java 5, you need to create a List<Callable<Boolean>> from your List<DocFeeder>.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 65k
  • Answers 65k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Are you in the UK by any chance? Although we… May 11, 2026 at 11:10 am
  • added an answer Looking at the relevant enum type, I (too) fail to… May 11, 2026 at 11:10 am
  • added an answer Thanks for the all replies, after going through other libraries… May 11, 2026 at 11:10 am

Related Questions

I fail to understand why this code won't compile ExecutorService executor = new ScheduledThreadPoolExecutor(threads);
I have a very strange problem. Under some elusive circumstances I fail to apply
I have an SVN repository and I need the commits to fail if no
I'm writing a series of Windows services. I want them to fail if errors
I'm having some problems getting my object to gracefully fail out if an invalid
I use Assert.Fail a lot when doing TDD. I'm usually working on one test
I want an expression that will fail when it encounters words such as boon.ini
I'm interested in cross-colo fail-over strategies for web applications, such that if the main
I'm taking the leap: my PHP scripts will ALL fail gracefully! At least, that's
I'm implementing a COM interface that should return int values either S_OK or E_FAIL

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.