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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:39:28+00:00 2026-06-14T05:39:28+00:00

I have this simple question: In a service i need to run 2 more

  • 0

I have this simple question:

In a service i need to run 2 more threads independent from each other, and i need a wakelock to let them be executed. I give you an example:

   wl.aquire();

    if (true) {
        mExecutorService.execute(thread1);
    }

    if (true) {
        mExecutorService.execute(thread2);
    }
   wl.release();

So, in this case, the wake lock will be released once the 2 threads have started or does it wait for them to finish?

If not, i need the wakelock to stay up while they’re running, and release it only when the last thread has finished. How can i do that? Do i have to acquire new wakelocks inside the thread’s body?

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-14T05:39:30+00:00Added an answer on June 14, 2026 at 5:39 am

    According to the Executor execute() documentation: “Executes the given command at some time in the future. The command may execute in a new thread, in a pooled thread, or in the calling thread, at the discretion of the Executor implementation.”

    So it depends on which concrete Executor you are using.

    I think you are supposed to use submit() to give a new job to an Executor.

    If you stick with the Executor, calling get() on the Future returned by submit() will block until the result is available.

    So you could call:

    Future<Result> result_1 = mExecutorService.execute(Runnable1);
    Future<Result> result_2 = mExecutorService.execute(Runnable2);
    
    result_1.get();
    result_2.get();
    

    Alternatively, you could start two threads and wait for them to finish:

    Thread t1 = new Thread(Runnable1);
    Thread t2 = new Thread(Runnable2);
    t1.start();
    t2.start();
    
    t1.join();
    t2.join();
    

    Hope this helps.

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

Sidebar

Related Questions

i have this simple question please. I have this part of code which sets
i have a simple question: i have this var: $v = 24000,1500,1500,1500,1500,1500,; i would
I have a simple question. I have this bitmap Is there a way with
Possible Duplicate: Check if a variable is empty Simple PHP question: I have this
this is a simple question. I have a form that is being validated using
hopefully a pretty simple question this time. I have a Select method in a
I know this is a simple question for someone out there, but I have
I'm rather new to WPF, so maybe this is a simple question. I have
this time i have a simple question: I have one table, related with himself
This is a simple htaccess question for experts but I have been trying to

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.