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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T23:43:19+00:00 2026-05-22T23:43:19+00:00

I tried to make a event dispatcher in Java that will dispatch events as

  • 0

I tried to make a event dispatcher in Java that will dispatch events as threads. So all the EventListener classes are essentially implemented the Runnable class. Like how firing of events work traditionally, a method in the event dispatcher class loops through a list of EventListeners and then invoke their handler method, except that this time, I invoke these handler as threads by putting the listeners into new Thread(handlerObject).start(). The actual handling is done in the run() method in the EventListener.

So it looks something like:

for(EventListener listener : listenerList) {
   if(listener instanceof Runnable)
      new Thread(listener).start();
}

So all instructions to handle the event in the listener are put inside the run() method, which will be executed when the thread.start().

But the problem is the threads often go into a situation where one of the threads got stuck somewhere and didn’t manage to continue. Sometimes, several threads may also get stuck while some managed to run through all instructions in the run() method in the listener. I looked up and this sounds like what it is called a deadlock.

I tried to put the “synchronized” modifier to all my methods but it still has this problem. I thought the synchronized keyword would simply just queue any threads trying to run a similar method until a current thread running the method has finished. But this doesn’t solve the problem still. Why doesn’t synchronized solve the problem especially when I already have it on all my methods and it should queue any concurrent access that may potentially cause a deadlock? I didn’t use any wait() or notify() methods. Just a simple event dispatcher that attempts to run its event listener as a thread.

I am pretty new to threads but have found it very difficult to even debug it because I don’t know where has gone wrong.

Thanks for any help.

  • 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-22T23:43:20+00:00Added an answer on May 22, 2026 at 11:43 pm

    Deadlock is something along the lines of this:

    A needs iron to make tools, asks B for
    iron
    B needs tools to make iron,
    asks A for tools

    Neither will complete. Just because you’ve put the syncronized key word around them does not guarantee that you’re going to run into a logical impossibility. You have to judge when one thing will be able to move forward and when it won’t.

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

Sidebar

Related Questions

I want to make an event which will be triggered after i make the
Ideally I would like to be able to make the event target all p.hiddeninput,
Since few hours I tried to make a script which will show a div
Tried to make a little old school ajax (iframe-javascript) script. A bit of mootools
I tried to make the title as clear as possible... here is my scenario:
I tried to make an independent copy of an array but couldnt get one.
I tried to make a custom pushpin for the Bing Maps silverlight control, but
I tried to make ValidationAttribute which would check the database whether such an object.
I tried to make an action fixture and it’s not working. (c# with Slim
I tried to make an accordion effect with JavaScript based off this video altering

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.