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

  • SEARCH
  • Home
  • 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 8585249
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:00:47+00:00 2026-06-11T22:00:47+00:00

From javadoc for ThreadPoolExecutor : When a new task is submitted in method execute(java.lang.Runnable)

  • 0

From javadoc for ThreadPoolExecutor:

When a new task is submitted in method execute(java.lang.Runnable)
…. If there are more than corePoolSize but less than
maximumPoolSize threads running, a new thread will be created only if
the queue is full.

How can I make ThreadPool that will start new thread instead of submitting task to queue in this situation?

Example:

I have thread with corePoolSize=5 and maxPoolSize=10 and unbounded queue.

Suppose corePoolSize threads is busy right now, and new task is arrived – pool must start new thread and execute new task.

Suppose maxPoolSize threads is busy right now, and new task is arrived – pool must persist task into queue, and first free thread must take this task and execute.

  • 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. Editorial Team
    Editorial Team
    2026-06-11T22:00:48+00:00Added an answer on June 11, 2026 at 10:00 pm

    If you want a thread pool with a maximum size where the tasks are queued only when all the threads are busy.

    ExecutorService service = Executors.newFixedThreadPool(numberOfThreads);
    

    The cached thread pool which will not queue tasks, but will create a new thread as required. It will re-use a thread if one is free.

    ExecutorService service = Executors.newCachedThreadPool();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I started reading more about ThreadPoolExecutor from Java Doc as I am using it
from the javadoc for java.lang.Process : The methods that create processes may not work
Is there any method to export the javaDoc from eclipse into a .tex file?
I am writing a tool to scrape Javadoc from pre-existing Java source files and
Possible Duplicate: When do you use Java’s @Override annotation and why? From the javadoc
In Java, I need to know what is the bind operation: ServerSocket.bind() From Javadoc:
I see from the javadoc that the @SuppressWarnings annotation applies to TYPE,FIELD,METHOD,PARAMETER,CONSTRUCTOR,LOCAL_VARIABLE targets. Why
Is there a way to generate a Javadoc directly from an SVN repository? (or
In the JavaDoc of ActivityUnitTestCase it says: Do not call from your setUp() method.
I'm starting with Python coming from java. I was wondering if there exists something

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.