Lesson 4 - Multithreading in Java - Inter-thread Communication
In the previous lesson, Multithreading in Java - Synchronization in practice, we tried thread synchronization for the first time. This is realized by means of monitors. Today, we're going to show that the capabilities of these monitors definitely don't end with synchronization.
Inter-thread Communication
Java offers three methods related to inter-thread communication. These are
the wait()
, notify()
, and notifyAll()
methods. You've already encountered them for sure because they are defined by
the Object
class and therefore each object contains them. At first
glance, it may seem a little confusing - why are these methods part of every
object, why the aren't defined simply by the Thread
class? And how
can we use such methods? You may have already noticed that using monitors
divides our threads into groups according to the monitors they use. The threads
in these groups can then interact with each other via the shared monitor. And
since we know that any object can be a monitor, it was necessary for every
object to contain these controlling methods.
To be able to call these methods on the monitor successfully, we need to own the monitor at the moment (I mean that our thread has to own it). And when are we sure we own a monitor? Well, in the
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
We'll explain inter-threaded communication using the wait(), notify() and notifyAll() methods. The examples will also show deadlock and spurious wakeup.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.