Thread Signaling in Java

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

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

  • @RahulYadav-dd7qe
    @RahulYadav-dd7qe 7 месяцев назад +10

    This is easily the BEST EVERY PLAYLIST of any tutorial I've ever seen. Trust me when I say this, I've watched ~500-1K tutorial videos over youtube of various kinds, but the satisfaction I got from this playlist is beyond my words.
    I would've easily paid $100 equivalent in my currency for this.

    • @JakobJenkov
      @JakobJenkov  7 месяцев назад +1

      Thank you very much for your kind words !! ... you can always share the playlist with your colleeagues... that would be helpful 😊

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

      @@JakobJenkov , Why this Channel doesn't have at least 500K Subs is beyond Logic, pls check ur Channel name for Shadow Bans or other types of Ban by Shady YT algorithm,
      U must take help of Paid SEO tools to analyze the Views or keywords appropriate for ur Channel>
      In My Opinion, whenever someone Searches for "Multi-threading concepts", urs must be the Top 5 results
      🙂🙏🙏

  • @wassimalsafwi3091
    @wassimalsafwi3091 5 месяцев назад +5

    Outstanding series, Jakob. It was clear and concise, with many examples, yet rich in theory. Thank you very much for your work. I am looking forward to your next video about multithreading, hoping you will include ForkJoin, CompletableFuture, and virtual threads.

    • @JakobJenkov
      @JakobJenkov  5 месяцев назад

      You are very welcome!! :-) ... I have a few ideas for more videos about Java concurrency - incl. a video about the ForkJoinPool :-)

  • @kimo8154
    @kimo8154 Год назад +7

    thank you verry much.
    believe me i read/watched every single tutorial you made on your website/youtube channel.
    you are a legend and thank you again, again and again

  • @damercy
    @damercy Год назад +4

    I read your tutorials on your website 2 years ago and learned collections from there. Really grateful for such clear, concise and deep explanations. I'm happy to see the video versions of concurrency etc are being published as well. Thank you for these. I'm now a native android developer who just did his bachelors in CSE last year and thanks to you, I am somewhat confident in these concepts (so much to learn yet!). Thank you Jakob. :) I hope to see more videos on this channel as well.

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

      You are welcome! I am happy that my tutorials and videos have helped you ! :-)

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

    Jakob, this entire series is great. I'll gladly recommend it to anyone as an alternative of companion to the Concurrency in Practice book. Well done!

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

    thank you for the wonderful cource on threads. i have been looking ofr this kind of information on thread as Thread is scariest topic to face in the interview

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

      You are welcome ! ... I am just happy my tutorials are useful to people out there ! :-)

  • @matthewsaucedo2471
    @matthewsaucedo2471 9 месяцев назад +2

    Excellent series here. Start to finish exceptional explanations, made it easy to binge!

    • @JakobJenkov
      @JakobJenkov  8 месяцев назад +1

      Thank you very much !! :-)

  • @garimadhanania1853
    @garimadhanania1853 4 месяца назад +1

    This is the best ever playlist!! I really enjoyed learning these concepts and its a must watch for those using Java concurrency!! Thanks for your efforts Jakob! 💯💯

  • @jayaprakashreddy9980
    @jayaprakashreddy9980 2 месяца назад +1

    This channel is gold❤❤

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

      Thank you very much! :-) :-)

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

    Thank you for your videos. I'm studying concurrent systems concepts and your website as well as your videos are a perfect complement.

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

      Great! I am happy to hear that! :-)

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

    Well done! Very informative video especially regarding spurious wakeups.

  • @arpitjain4239
    @arpitjain4239 7 месяцев назад +1

    Can you please make a video on Semaphores, Mutexes about differences and similarities. 🙏
    Your videos are amazing!!

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

      Hmm... I have a long list of video topics, and not so much time, unfortunately ! ... so I am not sure if I can get around to it! ... but who knows! Maybe ! :-)

  • @RahulKumar-ed1bt
    @RahulKumar-ed1bt Год назад +1

    Best explanation ever

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

    such an amazing explaination, great stuff

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

    Thanks for the series

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

    Perfect! Thank you.

  • @RossZhang-gh5of
    @RossZhang-gh5of Месяц назад +1

    Very good video! Just curious does spurious wake-up still exist in Java 22?

    • @JakobJenkov
      @JakobJenkov  Месяц назад +1

      I don't actually know (maybe Google knows?), but it's probably better to be safe than sorry :-)

  • @MyTube.0101
    @MyTube.0101 Год назад +1

    Nice explanation!!

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

    Awesome plz explain more advance concepts here

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

    Very helpful

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

    @Jakob, I see that you use notify in your examples for BoundedSemaphore. Is it possible that one consumer can wake up another consumer instead of waking up the producer ? Same goes with producer too. Any reason why notifyall is not used ? I was thinking notifyall wouldnt cause the problem of consumer not waking up another consumer.

    • @JakobJenkov
      @JakobJenkov  День назад

      Typically, consumers and producers will be calling wait() on different objects, so you know that you only awaken consumers or producers, and not all threads.

  • @garimadhanania1853
    @garimadhanania1853 4 месяца назад +1

    could you please share some usecases where a thread would need to wait on an object?
    The only vague thing I can think of is that when a thread is waiting for some data that is probably going to be written to the signalObject by the notifier..kind of like future

    • @JakobJenkov
      @JakobJenkov  4 месяца назад +1

      wait() is used e.g. when a thread is waiting to take some elements from a BlockingQueue that is currently empty. Then the thread waits until another thread puts some elements into the queue and calls notify() .

  • @garimadhanania1853
    @garimadhanania1853 4 месяца назад +1

    question: if say more than 1 thread called wait and then 1 called notify(), how is it decided which one to notify?

    • @JakobJenkov
      @JakobJenkov  4 месяца назад +1

      There is no guarantee about which waitinf thread gets notified with a notify() call. This can result in "Thread Starvation" . The solution is to implement "fairness" among the waiting threads.

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

    In this case 12:47 it's not necessary to used atomic type in signalRaised because is synchronized all the class with synchronized(this) {}?

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

      Inside a synchronized block you do not need to use atomic types, nor volatile variables. However, then all access to these variables (fields) should be within synchronized blocks.

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

    nice tutorials!!! just wondering, it would be "beneficial" that flag variables be "volatile" ?

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

      Only if accessed by more than one thrread.

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

    thank you.

  • @AMITTIWARI-re9sg
    @AMITTIWARI-re9sg Год назад

    Great video, But I have one issue with below code - Where when my Female thread called first my male thread is keep on waiting. I don't want a signal to be missed nor I want my thread to keep on waiting.
    import java.util.ArrayList;
    import java.util.List;
    /*
    Objective is to use two threads for stundent list and each thread will responsible for doing the needful based on Gender
    In below example I have just used to print the name of male and fémale student with the help of different thread.
    Another important aspect is both thread are communicating with standard wait and notify mechanism and the lock is on same signal object
    */
    public class MultiThread {
    static List studentList = new ArrayList();
    private boolean isThreadWaiting = false;
    private boolean signalRaised = false;
    public static void main(String[] args) throws InterruptedException {
    Student s1= new Student("Amit", "male");
    Student s2= new Student("Amita", "female");
    Student s3= new Student("Chandan", "male");
    Student s4= new Student("Amrita", "female");
    Student s5= new Student("Ajay", "male");
    Student s6= new Student("Chandana", "female");
    studentList.add(s1);
    studentList.add(s2);
    studentList.add(s3);
    studentList.add(s4);
    studentList.add(s5);
    studentList.add(s6);
    Object signalObject = new Object();
    MultiThread multiThread = new MultiThread();
    Runnable runnable=() -> {
    synchronized (signalObject) {
    System.out.println("Calling " + Thread.currentThread());
    try {
    if (multiThread.signalRaised) {
    multiThread.signalRaised=false;
    return;
    }
    System.out.println(Thread.currentThread().getName() + " going to wait");
    multiThread.isThreadWaiting=true;
    signalObject.wait();
    multiThread.isThreadWaiting=false;
    System.out.println(Thread.currentThread().getName() + " wait ended");
    } catch (InterruptedException e) {
    e.printStackTrace();
    }
    studentList.stream().sorted().filter(student -> student.getGender().equals("male")).forEach(student -> System.out.println(student));
    }
    };
    Runnable runnable2=() -> {
    synchronized (signalObject) {
    System.out.println("Calling "+Thread.currentThread());
    studentList.stream().sorted().filter(student -> student.getGender().equals("female")).forEach(student -> System.out.println(student));
    if(!multiThread.isThreadWaiting) {
    multiThread.signalRaised=true;
    }
    signalObject.notify();
    System.out.println(Thread.currentThread().getName()+" After notify existing synchronized block");
    }
    };
    startThreads(runnable, runnable2);
    }
    private static void startThreads(Runnable runnable, Runnable runnable2) {
    Thread t1= new Thread(runnable, "Male Thread 1");
    Thread t2= new Thread(runnable2, "Female Thread 1");
    t2.start();
    t1.start();
    }
    }

  • @arpitjain4239
    @arpitjain4239 7 месяцев назад

    What is different between a Condition Variable and Any Other Object when used for signalling?

    • @JakobJenkov
      @JakobJenkov  7 месяцев назад

      What do you mean by "condition variable" ?

    • @arpitjain4239
      @arpitjain4239 7 месяцев назад

      @@JakobJenkov I mean't using Condition Interface in Locks.

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

    Hello Jakob, you upload this to github???
    thank you :)

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

      I just did ! :-) ... it's now part of my Java Examples repository!
      github.com/jjenkov/java-examples

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

    Why so complex so? If one solution works, then I think pp would interest in the working solution...

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

      I teach principles and techniques - bit final answers 😉