Practice with

"Hi, Amigo!"

undefined
16
Task
Java Multithreading, level 7, lesson 9
Locked
Producer–consumer
In the TransferObject class, arrange calls to the wait/notify/notifyAll methods to ensure the sequential production and consumption of objects. In the run methods of the ConsumerTask and ProducerTask classes, create the necessary synchronized blocks.
undefined
16
Task
Java Multithreading, level 7, lesson 9
Locked
Arrange wait and notify methods
Arrange wait and notify methods. Example output: Thread-0 MailServer received: [Person [Thread-1] wrote an email 'AAA'] in 1001 ms.
undefined
16
Task
Java Multithreading, level 7, lesson 9
Locked
CountDownLatch
You are given a standard implementation of the wait-notify pattern. Read about CountDownLatch and use the latch field to rewrite the body of the someMethod method. Remove all unnecessary code from the class.