Java Concurrency Interview: Implement Producer Consumer pattern using wait-notify

Поделиться
HTML-код
  • Опубликовано: 25 ноя 2024

Комментарии • 219

  • @DefogTech
    @DefogTech  5 лет назад +117

    Important: The last part about using wait-notify is incorrect. My mistake, sorry about that.
    The object used to wait/notify should be the same object used by threads to synchronize. So correct code should be similar to:
    synchronize(sharedQ){
    sharedQ.wait();
    }
    synchronize(sharedQ){
    sharedQ.notifyAll();
    }
    That was a basic mistake which I should have caught. I feel bad about misleading the initial viewers. Sorry.

    • @VIRAJBHOSLE
      @VIRAJBHOSLE 5 лет назад +3

      One more issue with the code is that Condition solution should use methods on Condition not Object. i.e. await signal. Not wait signal. Reference "Java Concurrency in Practice".
      Only one slide was wrong, no problem.
      Otherwise great video! Thanks Man!

    • @viktorvostrikov9625
      @viktorvostrikov9625 5 лет назад

      I like your courses, however I don't understand this comment.. I keep getting exception about illegal monitor state.. what does sharedQ mean? Please explain or provide full code, which works :)

    • @viktorvostrikov9625
      @viktorvostrikov9625 5 лет назад

      can you provide source code with corrected wait/notify?

    • @singhsaurabh920
      @singhsaurabh920 5 лет назад +1

      can u provide code of wait and notify section

    • @singhsaurabh920
      @singhsaurabh920 5 лет назад

      can i call wait and notifyAll on this

  • @shradhabharti4484
    @shradhabharti4484 5 лет назад +52

    I generally don't put a comment for any video until I really like them. I must say that u explain each and everything very clearly. I don't have hands-on experience on multithreading and concurrency but with your videos, I find myself so comfortable with all these ..Keep uploading .after a long time I liked something good on youtube :)

    • @DefogTech
      @DefogTech  5 лет назад +11

      Thank you so much for your kind words! Such wonderful feedback keeps me going too

  • @EduardoAndersonRivasSalas
    @EduardoAndersonRivasSalas 6 месяцев назад +2

    Even years later, thank you for this video, it 's very useful and helped me finally understand this topic... sincere thanks

  • @mustapharaimilawal8053
    @mustapharaimilawal8053 6 месяцев назад

    Thank you for making this video, I watched it some few years back and I still came back to re-watch it in 2024. Thanks a lot for such a great teaching.

  • @kunalbudhiraja7761
    @kunalbudhiraja7761 3 года назад

    This channel teaches more about the approach to solving the problem.They don't go to the solution straight away,first they come to common implemented pattern ,than they optimize the solution.
    Brilliant

  • @radhianand5647
    @radhianand5647 Год назад

    first time learning about producer-consumer. your explanation is very clear and easy to understand

  • @RohitBagdi-bv5no
    @RohitBagdi-bv5no 8 месяцев назад

    this is the only channel that make me realize multithreading can be learnt thanks a lot man keep making more of such gems 😀

  • @rohansinha2760
    @rohansinha2760 3 года назад +3

    GENIUS !! No other words. Such a smooth and clear explanation to the problem

  • @arek6296
    @arek6296 Год назад +2

    I love your tutorials! I did this example myself and found a little but meaningful bug:
    -notEmpty and notFull should be called ".signal()" instead of ".signalAll()" because in case of releasing one spot in the queue by take() method, if there are multiple "putting" Threads, they are all notified at once about free space and they add concurently its own item exceeding the maxSize (and later condition `queue.size() == max` doesn't catch situation when this size is exceeded)

    • @6365bharath
      @6365bharath Год назад +1

      Great spot. Even I thought of the same.

    • @akashbiswas2833
      @akashbiswas2833 10 месяцев назад

      If we call signal() then the longest waiting thread will be notified and the rest of them will still be in a wait state.
      When they are notified they access the lock again and do a one on one insertion or removal of item.

  • @govindraokulkarni
    @govindraokulkarni 5 лет назад +2

    your videos are crisp and clear! that's the way to talk about complex topics.. thank you so much man!

  • @СергейСергеев-щ7с5й

    Greetings from Russia , having watched hours of content on concurrency/multithreading , this is the by far the best one i have seen , top notch.

  • @vishalsharma9251
    @vishalsharma9251 4 года назад +3

    Hi @Defog Tech, This is the my first comment on youtube in last 5 years, Your videos are very helpful, I have really understood the Java concurrency on your channel. Please keep uploading such awesome content. Thanks

  • @abadheshkrjha5336
    @abadheshkrjha5336 5 лет назад +4

    Easy explanation of any topic. I really like your way of explaining any topic.

  • @aatifnazar8203
    @aatifnazar8203 3 года назад +1

    this video has cleared a lot of my doubts and the way you have explained will help me remembering it for a very very long time ! Thanks for your hard and crisp work !

  • @amrendrabagga9124
    @amrendrabagga9124 11 дней назад

    Awesome explanation and i always used to wonder while going through producer-consumer code, that why we use while statement to block the threads. Finally got the answer.
    Thankyou🙌

  • @ChrisAthanas
    @ChrisAthanas 2 года назад

    Best clear explanation of a very complicated subject

  • @mostinho7
    @mostinho7 4 года назад +7

    8:50 instead of checking if queue.size==0 and then waiting on the condition, we must check that in a while loop because after resuming from the condition, another thread could have resumed before us, and the queue.size that we checked before would be outdated (the other thread that resumed before us took what was in the queue already)

    • @murali1790able
      @murali1790able 2 года назад +2

      why should we allow two threads to be in waiting in the first place? could you explain this? basically why java releases the lock after lock condition is false?

    • @DuyVu-br1do
      @DuyVu-br1do 11 месяцев назад

      actually when it reaching the wait() at if statement, the the consumer is in blocked state and added to the waiting set.
      after being notified by the producer, it accquire the lock again and continue.
      If using while -> then continue checking the queue size since the next execution is under the wait() statement.
      If using if -> then jump out of if, then execute the remaining code. As mentioned, the next execution will be under the wait() statement.

  • @sumitpaul3080
    @sumitpaul3080 4 года назад

    No new tutorials for a long time on threads, May God bless you. Will try to share your channel with my mates, but please do not stop illuminating us.

  • @diwakar.singh_official
    @diwakar.singh_official 3 года назад

    This channel always have unique topics and content.

  • @venkteshdwivedi
    @venkteshdwivedi 5 лет назад +2

    your hard work really appreciated expecting more Complex multithreading interview Q&A

  • @ShubhamSingh-wm1gh
    @ShubhamSingh-wm1gh 5 лет назад

    this is the best video I have seen ever for producer consumer problem ..thanxx man

  • @sharatchandra9198
    @sharatchandra9198 3 года назад

    Best videos of all time and even youtube understood that and suggesting on top of everyone

  • @shahrozsaleem3471
    @shahrozsaleem3471 4 года назад +27

    Hi, I have one doubt.
    At 8:52
    How can two threads simulatenaosly access the code put after acquiring the lock?
    Am I missing anything?

    • @studisthinics
      @studisthinics 4 года назад +1

      I had the same question in mind. Putting that while condition seemed unnecessary and impossible scenario.

    • @stivstivsti
      @stivstivsti 4 года назад

      It looks like await is taking the lock off. But how then it is going to protect integrity of the queue?

    • @sajjan09028
      @sajjan09028 4 года назад

      Correct ... it's not possible.

    • @harish-wi3ts
      @harish-wi3ts 4 года назад

      samething i got.

    • @talesara74
      @talesara74 4 года назад

      Same question..if lock if there an if would have been sifficient.

  • @mustafakatthawala7384
    @mustafakatthawala7384 4 года назад

    Brilliantly explained!
    It couldn't be better in any aspect.

  • @Bagunka
    @Bagunka 4 года назад

    BEAUTIFUL! Spoken way better than my professor

  • @ladybird029
    @ladybird029 3 года назад

    Hi Deepak, Please start posting new videos. Your way of explaining the things in simple language helps to understand the concepts better. Great job! Looking forward to learn from your new videos

  • @sanjaypaudel3296
    @sanjaypaudel3296 2 года назад

    Bro you are best guru out there . Put more contents your channel will bloom

  • @ILuvBilli
    @ILuvBilli 5 лет назад

    Super, This is the way to describe a tough subject like concurrency. Before watching this video i dont have any interest in concurrency. Now i think that its not so difficult. Thanks a lot

  • @umeshpatnaik5174
    @umeshpatnaik5174 4 года назад

    Hi , I have been following all the videos from you which are really great in content with clarity . Would love to see more from you .

  • @singhsaurabh920
    @singhsaurabh920 5 лет назад +5

    synchronize(sharedQ){
    sharedQ.wait();
    }
    synchronize(sharedQ){
    sharedQ.notifyAll();
    }
    I am not getting these words
    In wait and notify section
    Could u please explain the code i am having trouble in this part ?
    java.lang.IllegalMonitorStateException
    at java.lang.Object.notifyAll(Native Method)

  • @haris1497
    @haris1497 2 года назад

    A perfect explanation I had ever seen. Thanks a lot!

  • @fiandrhi
    @fiandrhi 5 лет назад

    I saw your correction. The whole thing is now very clear. Thank you.

  • @pammugaadu
    @pammugaadu 3 года назад +1

    Complete Code for Producer Consumer Pattern using Locks: (which is explained in this tutorial)
    import java.util.LinkedList;
    import java.util.Queue;
    import java.util.concurrent.locks.Condition;
    import java.util.concurrent.locks.ReentrantLock;
    public class ProducerConsumerUsingLocks {
    public static void main(String[] args) {
    MyBlockingQueue queue = new MyBlockingQueue(10);
    Runnable producer = () -> {
    for (int i = 0; i < 20; i++) {
    System.out.println("Produced:" + i);
    queue.put(i);
    }
    };

    Runnable consumer = () -> {
    for (int i = 0; i < 20; i++) {
    System.out.println("Consumed:" + queue.take());
    }
    };

    new Thread(producer).start();
    new Thread(consumer).start();
    }
    }
    class MyBlockingQueue {
    private Queue queue;
    private ReentrantLock lock = new ReentrantLock(true);
    private Condition notEmpty = lock.newCondition();
    private Condition notFull = lock.newCondition();
    private int max;
    public MyBlockingQueue(int size) {
    queue = new LinkedList();
    this.max = size;
    }
    public void put(E e) {
    lock.lock();
    try {
    while (queue.size() == max) {
    notFull.await();
    }
    queue.add(e);
    notEmpty.signalAll();
    } catch (InterruptedException e1) {
    // TODO Auto-generated catch block
    e1.printStackTrace();
    } finally {
    lock.unlock();
    }
    }
    public E take() {
    lock.lock();
    E item = null;
    try {
    while (queue.size() == 0) {
    notEmpty.await();
    }
    item = queue.remove();
    notFull.signalAll();
    } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } finally {
    lock.unlock();
    }
    return item;
    }
    }
    Thanks to the tutor.

  • @pranavnyavanandi9710
    @pranavnyavanandi9710 2 года назад +1

    Hi Defog_Tech.
    In case of multiple consumer threads at 9:00, how does thread-1 even get past the lock.lock() statement?
    Only thread-2 will go past that... I did not get how both threads were trying to execute near the try-block. Doesn't acquiring lock synchronize the method??

    • @murali1790able
      @murali1790able 2 года назад

      he said, java will release the lock once lock condition is false, this is both threads end being on the same statement. I also ddin't understand why java releases the lock.

  • @indigo2321
    @indigo2321 3 года назад

    You made it so easy to understand. Thank you very much!

  • @naveenkumar-ns9sg
    @naveenkumar-ns9sg 3 года назад

    you are the best.. please keep up doing the good work..

  • @vetri_vel
    @vetri_vel 3 года назад

    I like to add my humble opinion here. The while loop in the "take()" may allow N number of threads to enter the next line and which is removing the element. The first thread will remove the element successfully but the remaining threads will be ends up in Null. I would suggest using a slightly modified "Observer design pattern".

    • @vetri_vel
      @vetri_vel 3 года назад

      Thanks for this interesting Java Concurrency series.

  • @mandeepsharma8305
    @mandeepsharma8305 3 года назад

    Option 3 with semaphore would have been great. Thank you.

  • @suhani091088
    @suhani091088 4 года назад +1

    Just started with going through Defog videos on Threads,Concurrency, etc.. Really a very clear explanation on these complex concepts. Also, could you please paste the final code you have implemented in the slides

  • @ioanajohanna8492
    @ioanajohanna8492 4 года назад

    Best java channel ever

  • @skaLife
    @skaLife 4 года назад +1

    More videos from you will definitely help understand the technical concepts with clarity and ease. I know it will be little challenge for you to post more and more videos on core java,etc, while doing your regular work. But, please upload more videos which will be of great help. Keep doing the good work.

    • @DefogTech
      @DefogTech  4 года назад +4

      Thank you for the encouragement! I sure am planning to restart uploading first week of Jan 2020!

    • @VijayKumar-vv6yw
      @VijayKumar-vv6yw 4 года назад

      @@DefogTech Any update on this?

    • @DefogTech
      @DefogTech  4 года назад

      @@VijayKumar-vv6yw sorry sir, was stuck.. can you please let me know the topics you are interested in...
      sorry about the delay!

    • @VijayKumar-vv6yw
      @VijayKumar-vv6yw 4 года назад

      @@DefogTech Dude , I understand. Need not say sorry. We are eagerly waiting fo your content. I can consume any content from your channel. The explanations are so lucid that it gets stuck. I am more interested to see videos on distributed transactions and problems of joins in microservices and how to overcome them.

  • @ronaqbehura8874
    @ronaqbehura8874 3 года назад +6

    Great video! But I think there's a mistake at 9:37. As per official docs when the waiting threads are woken up they must re-acquire the lock to come out of await(). So only one thread(consumer) can poll from queue. So no NullPointerException will be thrown! No need to check queue size after await :)

    • @ravipasumarthy8732
      @ravipasumarthy8732 2 года назад +3

      Even I was thinking the same, otherwise it defeats the purpose of actual lock itself. "Signalall" means to just notify all waiting threads. The jvm will ensure only one thread is given the lock.

    • @hamidchemlali9168
      @hamidchemlali9168 Год назад

      you're wrong

  • @srvsrvm2638
    @srvsrvm2638 2 года назад

    Neat and clear explanation...

  • @souravsarker750
    @souravsarker750 3 года назад

    Great explanation on producer and consumer using different ways. It makes the idea really clear. I was wondering if there is any way to handle the fairness for consumers meaning if any consumer goes to wait-state first he will be notified first.

  • @Curious_soul_007
    @Curious_soul_007 3 года назад

    I really want to thank you for this video, It taught me a lot of things Blocking queue, await-signal, wait-notify.
    But at the same time, the last mistake wasted a lot of time of mine. I should have seen this comment earlier.
    If possible, can you please mention this on the video itself. Maybe as some floating suggestion.

  • @shashankgupta2526
    @shashankgupta2526 5 лет назад +2

    very very logical explaining..thnkx brother for ur wonderful efforts..

  • @jwork4072
    @jwork4072 2 года назад

    Very well explained thank you !

  • @RavinderSingh-nh6th
    @RavinderSingh-nh6th 5 лет назад

    really liked the way you explained. thumsup. God bless you

  • @vikramreddy7586
    @vikramreddy7586 5 лет назад

    Could you elaborate on why we used while loop by removing the if condition? Thanks for the videos, they are very concise and up to the point. God Bless and Good Luck :)

  • @ashwanipratap4229
    @ashwanipratap4229 4 года назад +1

    Hi,
    You used while loop so as to restrict more than one consumer thread get into race condition when an item is put into queue. You are also using lock.lock() above... Do you think we really need while loop? and Do we really need lock.lock() when we are using conditions... Thanks.

  • @VikasSharma-io5ip
    @VikasSharma-io5ip 3 года назад

    @Defog Tech i guess it should be while in put method also instead of if.Use case : when queue is full , two producers(A,B) try to put elements then they go into waiting, now one consumer wakes and take one element out. Then producer A will put one element and as soon as it leaves synchronized block producer B will try to insert and that will be successful which will exceeds queue size. Please confirm.Thanks for the explanation.

  • @balanjaneyulup5679
    @balanjaneyulup5679 3 года назад

    Great videos. it makes it easy to understand complex concepts. Though I have confused about using the while loop instead of the If condition. It could have been better to explain issues with if condition here and then introduce a while loop. anyway amazing explanation with exaples

  • @pavitrakannan2080
    @pavitrakannan2080 5 лет назад +1

    Very Good and clear explanation! Can you make a video on Advanced Collections and how to correctly incorporate them in your System design?

    • @DefogTech
      @DefogTech  5 лет назад +1

      Sounds like a good idea, any specific collections you are thinking about?

    • @pavitrakannan2080
      @pavitrakannan2080 5 лет назад

      @@DefogTechThanks so much for replying back. Some thing along the lines of Internal workings of a hashmap. When to use a list over a set. Performance in a multi threaded environment of these interfaces.

  • @rajeshg3570
    @rajeshg3570 3 года назад

    Another Gem of a video from you on java Concurrency. I've a question though, How does changing if condition to while would solve the problem ? Can you please elaborate ?

  • @kbhardwaj1989
    @kbhardwaj1989 5 лет назад

    Thanks for this video. Very beautifully explained.

  • @NatureBoyWooo
    @NatureBoyWooo 2 года назад +1

    I don't understand if there was a lock, how did two threads enter the method?

    • @pranavnyavanandi9710
      @pranavnyavanandi9710 2 года назад

      Exactly, I asked the same too.

    • @DefogTech
      @DefogTech  2 года назад

      They do not enter the block at the same time, though after one thread exits the block the other thread will get the chance to enter. There is no way for that thread to know the queue is already empty without rechecking. Did I answer your question?

  • @shellindebted5328
    @shellindebted5328 5 лет назад

    Wonderful explaination!!! Thanks a ton.

  • @tannubajpai4782
    @tannubajpai4782 3 года назад

    Thanx u bro
    very nice explanation.

  • @linouzz1732
    @linouzz1732 4 года назад +1

    thank you for your videos they are helpful!!
    quick question, it might be better to use await instead of wait in the try block to avoid the monitorexception thing.

  • @dzhero3752
    @dzhero3752 2 года назад +1

    Hi Mate; error correction: you should use notEmpty.signal() and not notEmpty.signalAll()

  • @meetgshari
    @meetgshari 2 года назад

    @9.04, how two thread could come at that point since we called lock above. I think only one thread will be in await and when the notEmpty.signalall is called that thread will remove the item and call the unlock so the other thread can come inside and do the if check and can go to the await state. What is the need to while there?

  • @aditikaushik68
    @aditikaushik68 Месяц назад

    Awesome video, it would have been great if you could add the link to the source code too.

  • @thuta753
    @thuta753 4 года назад

    @Defog Tech what is the differce using the "while" or "if"?Because both threads are wait state after the condition. Is "while" re-check the statement?

  • @manishmaithani398
    @manishmaithani398 3 года назад

    Which is the better way of implementation of blocking queue? "Lock and Condition" or "Wait-Notify" and why?

  • @shikharchoudhary7639
    @shikharchoudhary7639 5 лет назад

    Nicely explained. Thank you

  • @rahultaing9252
    @rahultaing9252 3 года назад +1

    how can 2 threads be in a lock.lock() block? time 9:05 on the video.

  • @satishkumar1799
    @satishkumar1799 5 лет назад

    Thanks for the video.. Nice explanation.. it would have been even more helpful if u had come up with examples and execute them..

  • @shubhamvishnoi4565
    @shubhamvishnoi4565 2 года назад

    Clear explanation!!

  • @thomassun3046
    @thomassun3046 5 лет назад +1

    This is a great explanation, but at 9:52 even though u add while loop there, thread 2 go to it,then the size of the queue is not empty ,then it go to remove the item and return,thread 2 will not go back to while loop again!so i hope u can explain it more,thx mate

  • @roman8745
    @roman8745 5 лет назад +1

    But why the while loop is the solution for return null from collection. Previously it was if statement which is checking for size and both threads successfully pass this check.
    Why when we use while for check the size behavior cannot be the same and how it passed the if statement if only one thread can join the lock?

    • @sugarpatro
      @sugarpatro 3 года назад

      The await condition suspends the lock.

  • @hughgrant8749
    @hughgrant8749 5 лет назад +2

    At 9:16, I am confused. When thread 1 acquires the lock after thread 2 has released it, the thread 1 will then check the statement "if queue.size() == 0" and in this case it is empty so thread 1 will wait at notEmpty.await() step. Am I missing something?

    • @DefogTech
      @DefogTech  5 лет назад +5

      In case of 2 readers, 1 thread will acquire the lock, find that queue is empty, will wait and release the lock, after that, thread 2 will acquire the lock, find the queue empty, will wait and release the lock..
      Thus we can have 2 threads both will continue after the if condition once the condition is satisfied. They dont restart from above the if statement, they only continue from where they left off.

    • @hughgrant8749
      @hughgrant8749 5 лет назад

      @@DefogTech thanks much, I get it now.

    • @hughgrant8749
      @hughgrant8749 5 лет назад +2

      Wait, just look back the code. It is ReentranceLock, so we can never have 2 threads enterring that block or reaching that if statement at the same time

    • @DefogTech
      @DefogTech  5 лет назад +3

      @@hughgrant8749 They are not going in at the same time. But both of them continue (one after the other) after the if statement. So first thread will get the item, but second thread will get null. Both will acquire the lock properly. First thread takes lock, gets element releases it. Then Second thread takes lock, gets null..

    • @_oo.monkeypox.oo_3344
      @_oo.monkeypox.oo_3344 5 лет назад

      @@DefogTech while the first thread is in the finally block releasing the lock, the second thread is waiting at lock.lock() line. after first thread releases it, the second one hits the if condition and waits because size is already zeroed by first. why do we need a while here?

  • @umarteachestechwith2others803
    @umarteachestechwith2others803 4 года назад

    The solution of locks I think is only suitable if we have multiple producers or multiple consumers. In case if there is single producer and single consumer we dont need to make put and remove method synchronized right? @Defog Tech

  • @shob6094
    @shob6094 4 года назад

    omg such a simple explanation for a concept we always are reluctant to read... i dint know it was too simple...one query though when replaceing the await/signal with wait/notify , in the code snippet i dint see the usage of while. is it not required to put the "while" instead of "if"

  • @arungupta8807
    @arungupta8807 3 года назад

    There is a problem. When we have our queue full and it's in await state then the consumer consumes one and signals all. in that case, if we have multiple producers then our queue size goes beyond the max capacity. Try this with 3 producers and 1 consumer.

  • @venkataramanan2381
    @venkataramanan2381 Год назад

    Hi @Defog
    Why there is no while condition on put method
    It will have the same problem in adding the item in max index position
    Pls correct me if iam wrong

  • @narayanadhurti1603
    @narayanadhurti1603 2 месяца назад

    Good one

  • @theunusual4566
    @theunusual4566 Год назад

    Just AMAZING.

  • @talesara74
    @talesara74 4 года назад

    At 10.06 even an if would have checked size of q for the new thread..why there is need of while?

  • @jpnr8
    @jpnr8 Год назад +3

    notEmpty and notFull not needed ..we can just use this.wait()... this implementation throw java.lang.IllegalMonitorStateException: current thread not owner... i tried it..

  • @yogeshkamat89
    @yogeshkamat89 5 лет назад +1

    Hi Deepak, The complete code for implementing with Locks & Conditions @ 10:10 doesn't reflect the while loop which was discussed @ 9:50. Apologies if I missed something.

    • @DefogTech
      @DefogTech  5 лет назад

      You're right. I missed it in the final code. It should have while loop. Thanks for pointing it out!

  • @AleksandarT10
    @AleksandarT10 5 лет назад

    Great Video, keep up the good work!

  • @fatemakhalfan6980
    @fatemakhalfan6980 4 года назад

    very clear , thanks

  • @shivomkumar628
    @shivomkumar628 Год назад +1

    First of all thank you for making such a great playlist, by far the best on RUclips in terms of concurrency.
    With respect to this video I have some doubts. May be I am missing some point but when you say at 9:05 that multiple threads will be waiting in if block condition, I don't think that's possible. Because we are using lock.lock at the very start of take method, there will be only one thread that will acquire that lock and will go inside and wait inside if condition, all the other threads will be blocked at lock.lock() statement only (because lock is a global lock in the blocking queue class, which is used for all the operations). Same is true for put method as well. Please correct me if I am wrong. (Am I missing something ? Only 1 thread can acquire the lock right ?) @Defog Tech

    • @dishithpoojary
      @dishithpoojary Год назад +1

      official documentation of await()- Causes the current thread to wait until it is signalled or interrupted.
      The lock associated with this Condition is atomically released and the current thread becomes disabled for thread scheduling purposes and lies dormant until one of four things happens:Some other thread invokes the signal method for this Condition and the current thread happens to be chosen as the thread to be awakened; or
      Some other thread invokes the signalAll method for this Condition; or
      Some other thread interrupts the current thread, and interruption of thread suspension is supported; or
      A "spurious wakeup" occurs.

  • @nishankdas1895
    @nishankdas1895 Год назад

    I still don't understand how can two consumer threads wait on the condition because we have been using a lock over that method in the first place.

  • @ektagupta2293
    @ektagupta2293 4 года назад

    Great video! Thanks for the explanation.
    I checked your description regarding wait() and notifyAll() and understood.
    However, I have one question, whenever we call sharedQ.notifyAll(), it will wake up all producer and consumer threads waiting on sharedQ.
    Is it possible using wait/notify method, that producer thread wakes up only consumer threads and vice versa, consumer thread wakes up only producer threads?

  • @breezemisty2092
    @breezemisty2092 2 года назад

    Bro, you rock. tks a lot!

  • @gaurikesarwani1615
    @gaurikesarwani1615 Год назад

    It would be more helpful if you provide the sample code or example code link. Thanks for such a nice video!

    • @PrasadReddyO
      @PrasadReddyO 8 месяцев назад

      Please try out the complete code I pasted today to test this out!

  • @ury0005
    @ury0005 4 года назад

    How can we add a new item if the lock is held by take method and we can't enter the put method?

  • @srinivasaraokandibanda4131
    @srinivasaraokandibanda4131 2 года назад

    I have similar problem where two threads need to read element by element.. i tried same concept but will not work. Two threads started but not moving further

  • @saravanansivakumar9259
    @saravanansivakumar9259 2 года назад

    I am getting illegalMonitorstateException. Any idea when it occurs? I followed the same approach.

  • @anmolmonga8564
    @anmolmonga8564 8 месяцев назад

    why cant we use a semaphore instead of lock? we can restrict access to resources that is in this case our queue.

  • @bhaskartaneja6293
    @bhaskartaneja6293 Год назад

    Just a question sir , at 09:00, how come 2 threads be at await conditions .. since its inside lock . I presume that only one could go inside, take lock and await and others be waiting for lock only

  • @xGrofx
    @xGrofx 5 лет назад

    Great explanation! Good job man.

  • @murali1790able
    @murali1790able 2 года назад

    Why does java releases the lock when lock state is false. does this allow multiple threads to come in and wait? Because of this we need to solve the problem where multiple consumers trying to read the same item.

  • @sanjarmatin6227
    @sanjarmatin6227 4 года назад

    Awesome man !!!

  • @torrtuganooh2484
    @torrtuganooh2484 2 года назад

    If we are taking same lock in both put and take method, then wouldn't it be that only one thread will do either put or take.
    If a thread is in put, no thread can go in take. And vice versa.
    Is that possible?

  • @sarojsahoo8763
    @sarojsahoo8763 4 года назад

    When Using ReentrantLock why not same object we are using for lock and unlock.

  • @Arpgupta0
    @Arpgupta0 4 года назад

    Good sir 👌👌

  • @Happymejoyus
    @Happymejoyus 4 года назад

    earned a sub !! Thanks a lot.

  • @devashishpadgaonkar7730
    @devashishpadgaonkar7730 3 года назад

    Implementing Producer-Consumer using wait and notify.
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Queue;
    import java.util.Random;
    class Datum{
    private final int DATA_SIZE = 5;
    private Queue queue = new LinkedList();
    private Object boundedQueue = new Object();
    public void producer(int data){
    synchronized (boundedQueue) {
    System.out.println("Thread: "+ Thread.currentThread().getId() +" producing: "+data);
    while(queue.size() == DATA_SIZE){
    try {
    boundedQueue.wait();
    } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }
    }
    queue.add(data);
    boundedQueue.notifyAll();
    }
    }
    public Integer consumer(){
    Integer val = null;
    synchronized (boundedQueue) {
    while(queue.size() == 0){
    try {
    boundedQueue.wait();
    } catch (InterruptedException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }
    }
    val = queue.remove();
    boundedQueue.notifyAll();
    }
    return val;
    }
    }
    public class ProducerConsumerWithwaitnotify {
    public static void main(String[] args) {
    Datum d = new Datum();
    Thread p1 = new Thread(new Runnable() {
    @Override
    public void run() {
    while(true){
    int val = new Random().nextInt();
    d.producer(val);
    }
    }
    });
    Thread p2 = new Thread(new Runnable() {
    @Override
    public void run() {
    while(true){
    int val = new Random().nextInt();
    d.producer(val);
    }
    }
    });
    p1.start();
    p2.start();
    Thread c1 = new Thread(new Runnable() {
    @Override
    public void run() {
    while(true){
    Integer val = d.consumer();
    System.out.println("consumed: by thread : "+Thread.currentThread()+" "+val);
    }
    }
    });
    Thread c2 = new Thread(new Runnable() {
    @Override
    public void run() {
    while(true){
    Integer val = d.consumer();
    System.out.println("consumed: by thread : "+Thread.currentThread()+" "+val);
    }
    }
    });
    c1.start();
    c2.start();
    }
    }