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 8184799
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T01:37:46+00:00 2026-06-07T01:37:46+00:00

For my Android application, I use ScheduledThreadPoolExecutor instead of Timer because it is not

  • 0

For my Android application, I use ScheduledThreadPoolExecutor instead of Timer because it is not affected by time changes.

With the Timer, you can create it by giving it a name. EX: Timer myTimer = new Timer(“TimerA”);

This is very convenient because when debugging using DDMS in the Threads view, I can see which exactly Threads are running… and use the name to trace back to my code.

However, using ScheduledThreadPoolExecutor, I can’t seem to give it a name. And so when debugging using Threads view in DDMS, I see something like: “pool-4-thread-1” which isn’t meaningful and I can’t trace back to my code with a name like that.

Can anyone help me with this?

  • 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-07T01:37:48+00:00Added an answer on June 7, 2026 at 1:37 am

    The standard Java API doesn’t support naming ThreadPoolExecutor, however, naming the Thread created by ThreadPoolExecutor is supported via ThreadFactory, check out here:

    Creating new threads

    New threads are created using a ThreadFactory. If not otherwise specified, a defaultThreadFactory() is used, that creates threads to all be in the same ThreadGroup and with the same NORM_PRIORITY priority and non-daemon status. By supplying a different ThreadFactory, you can alter the thread’s name, thread group, priority, daemon status, etc. If a ThreadFactory fails to create a thread when asked by returning null from newThread, the executor will continue, but might not be able to execute any tasks.

    Sample code:

    ScheduledThreadPoolExecutor scheduledThreadPoolExecutor = Executors.newScheduledThreadPool(5, new ThreadFactory() {
      final AtomicInteger threadNumber = new AtomicInteger(1);
        
      @Override
      public Thread newThread(Runnable r) {
        return new Thread(r, "Foo-" + threadNumber.getAndIncrement());
      }
    });
    

    Hope this helps.

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

Sidebar

Related Questions

Can I use a LGPL library in my paid android application? I am not
My Android application can't use XML buttons, because the size and label of the
I have been developing the Android application and I use Timer and TimerTask objects
How can we use OCR web service in android application I have use this
Is their any possibility to use XHTML design for android application instead of XML
I'm not sure why but when I use zxing in my android application to
I use jquery wizard in my Android application. So far I can see the
In my Android application I use the Graph API through the Android SDK. I
In my android application I use camera to capture photo. I want to print
I'm converting my Android application to use fragments. Previously, I had an activity that

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.