Login
Remember
Register
Ask a Question
What do you understand by inter-thread communication?
0
votes
asked
Jun 16, 2022
in
JAVA
by
Robindeniel
What do you understand by inter-thread communication?
thread-communication
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 16, 2022
by
Robindeniel
Below are the details of inter-thread communication
The process of communication between synchronized threads is termed as inter-thread communication.
Inter-thread communication is used to avoid thread polling in Java.
The thread is paused running in its critical section, and another thread is allowed to enter (or lock) in the same critical section to be executed.
It can be obtained by wait(), notify(), and notifyAll() methods.
...