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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T14:53:02+00:00 2026-05-16T14:53:02+00:00

I would like to know if Java provides an equivalent of .NET’s classes of

  • 0

I would like to know if Java provides an equivalent of .NET’s classes of ManualResetEvent and WaitHandle, as I would like to write code that blocks for a given timeout unless an event is triggered.

The .NET classes of WaitHandle and ManualResetEvent provide a nice, hassle-free interface for that which is also thread-safe as far as I know, so what does Java has to offer?

  • 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-05-16T14:53:02+00:00Added an answer on May 16, 2026 at 2:53 pm

    Have you considered using wait/notify (the equivalent of Monitor.Wait and Monitor.Pulse) instead?

    You’ll want a little bit of checking to see whether you actually need to wait (to avoid race conditions) but it should work.

    Otherwise, something like CountDownLatch may well do what you want.

    EDIT: I’ve only just noticed that CountDownLatch is basically “single use” – you can’t reset the count later, as far as I can see. You may want Semaphore instead. Use tryAcquire like this to wait with a timeout:

    if (semaphore.tryAquire(5, TimeUnit.SECONDS)) {
       ...
       // Permit was granted before timeout
    } else {
       // We timed out while waiting
    }
    

    Note that this is unlike ManualResetEvent in that each successful call to tryAcquire will reduce the number of permits – so eventually they’ll run out again. You can’t make it permanently “set” like you could with ManualResetEvent. (That would work with CountdownLatch, but then you couldn’t “reset” it 🙂

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

Sidebar

Related Questions

I would like to know if there's a way in java to find out
I would like to know how to efficiently implement filesystem changes in java? Say
I would like to know, in a practical sense, on a large scale (Java
As I'm new to java, I would like to know, 1. How many Default
I wanted to know the existing Augmented Reality Frameworks in Java. I would like
Would like to know the c# code to actually retrieve the IP type: Static
I would like to know the best method of breaking up large Java Swing
I was going through some java code(which uses playframework ) that provides some shopping
I'd like to know which Java web application frameworks provides a hot reload capability,
I would like to write a utility that will provide me with a relatively

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.