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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:13:10+00:00 2026-06-01T06:13:10+00:00

I need to create async thread that runs once with a delay of 2

  • 0

I need to create async thread that runs once with a delay of 2 minutes and that can be killed at any moment. I saw several possible solutions:

  1. ScheduledExecutorService and FutureTask allow me to interrupt a running task, but I will have to invoke shutdown() to terminate all the running threads, and this will block user until the processes were terminated. Also, I will have to frequently invoke Thread.interrupted() as described in Enno Shioji’s answer.
  2. Timer and TimerTask do not require to release running threads, but I have no way to interrupt a running timer thread (Timer.cancel() just cancels future scheduling)
  3. Using Thread and sleep with thread interruption problem.

Is there a good solution? (I’m using tomcat 7)

thank you

  • 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-01T06:13:11+00:00Added an answer on June 1, 2026 at 6:13 am

    After some tests and researches, FutureTask.cancel() and Threads need similar handling of interrupts, as stated in Enno Shioji’s answer

    1. Check interruption flag in your logic
    2. Act upon Interrupted exception

    An example that tests interruption flag:

    private final class MyTask implements Runnable {
    
        public void run() {
            try{
                for(int j=0; j<100000000; j++) {
                    for(int i=1; i<1000000000; i++){
                        if(Thread.interrupted()){ //Don't use Thread.interrupt()!
                            Log.debug("Thread was interrupted for" + cache);
                            return; //Stop doing what you are doing and terminate.
                        }
                        Math.asin(0.1565365897770/i);
                        Math.tan(0.4567894289/i);
                    }
                }                            
            }catch(Throwable e){//if exception is uncaught, the scheduler may not run again 
                ...
            }
        }
    }
    

    As I understand, ScheduledExecutorService maybe be shutdown when application ends running

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

Sidebar

Related Questions

I need create clone repository. but I do not know where can I get
I need create a document word with Java. And I ask, how can I
I have dynamically created WrapPanel (_wp) with several Borders. And I need create handler
I need to create an XML schema that looks something like this: <xs:element name=wrapperElement>
I know that if I create an NSURLConnection (standard async one), it will call
I need to create a gate to a resource in an async programming model
I need create custom dialog and put JPanel into it. Is it possible?
i need create an email list sending to many emails. what is best solution
i need create a variable with parent subclass. Example: Parent Class <?php class parentClass
Need to create a custom DNS name server using C which will check against

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.