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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T22:37:21+00:00 2026-06-01T22:37:21+00:00

I implemented multithreading through implemnting runnable and overriding run() . I want to suspend

  • 0

I implemented multithreading through implemnting runnable and overriding run(). I want to suspend the thread inside run().

Please Help me

What should I do in void run(){ } ?

  • 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-01T22:37:23+00:00Added an answer on June 1, 2026 at 10:37 pm

    The usual way to do this is to call wait on some object that another thread can then notify. This would be the pattern for your code:

    public void run() {
        . . .
        // decide to suspend thread execution:
        synchronized (LOCK) {
            try {
                LOCK.wait();
            } catch (InterruptedException e) {
                // thread was interrupted -- time to return?
            }
        }
        // execution resumes here after interrupt or notify
    }
    

    Then some other thread executes this code:

    synchronized (LOCK) {
        LOCK.notify(); // or notifyAll();
    }
    

    In these code fragments, LOCK is some object that is accessible to both pieces of code. There’s no need for a separate object if it makes sense to use an available object to do the job.

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

Sidebar

Related Questions

I want to load JSON data through multithreading and parse it to NSDictionary, have
We have a vb.net application where we have implemented multithreading. We determined that we
My computer is a dual core core2Duo. I have implemented multithreading in a slow
how to to implement multithreading where one thread updating UI and other one is
I know how to implement multithreading using c#. But I want to know how
In this multithreading program, when I run it, I always get the output in
I would like to have thread-safe read and write access to an auto-implemented property.
I have a server in Java which is multithreading, and I've created a thread
I am learning about MULTITHREADING in java and I want to know why in
multithreading public class RaceData { public static void main(String[] args) { class UnsafeSequence implements

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.