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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T20:16:06+00:00 2026-05-20T20:16:06+00:00

Following this example in the Java(tm) tutorials, I have implemented this basic one producer

  • 0

Following this example in the Java(tm) tutorials, I have implemented this basic one producer – one consumer application in Delphi 2009 (which introduced object locks).

Now I would like to extend it so that more than one consumer thread takes messages from the Drop instance. Compared with the Java tutorial example, the only code change would be in the main method:

public class ProducerConsumerExample {
    public static void main(String[] args) {

        Drop drop = new Drop();

        (new Thread(new Producer(drop))).start();

        (new Thread(new Consumer(drop))).start();
        (new Thread(new Consumer(drop))).start(); // <--- added
        (new Thread(new Consumer(drop))).start(); // <--- added 
    }
}

So the Drop class would still have one message object of type String, and all running consumers will compete to get access to the lock, and process the message data.

Would this code change introduce risks, or is it safe to use?

  • 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-20T20:16:07+00:00Added an answer on May 20, 2026 at 8:16 pm

    According to code from linked sample, you won’t be able to stop more than one consumer.
    So, you either need to add stop() method to consumer class, or post DONE as many times as many consumers are there.

    Except this, there are no risks.

    But if you wish to increase throughput of your producer-consumer, you may consider using class that can hold more than one value at the time — some kind of queue, for example BlockingQueue from JDK. This way your producers and consumers won’t be blocked so often as in this code sample.

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

Sidebar

Related Questions

Following this example, I can list all elements into a pdf file import pyPdf
I initially designed my system following the s# architecture example outlined in this codeproject
I have ASP.Net code similar to the following (this is inside a FIELDSET): <ol>
I have been learning Python by following some pygame tutorials . Therein I found
Inspired by this question I began wondering why the following examples are all illegal
Following this question: Good crash reporting library in c# Is there any library like
I've been following this tutorial (lesson 6) in order to build and deploy a
So I am following this guide: http://technotes.1000lines.net/?p=23 and I am going through the steps.
I'm following this tutorial (seems good) for Rails. After I run ruby script/generate scaffold
I'm building a Windows service and following this MSDN article , but I'm stuck

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.