Simple Wait / Notify Thread Example
This is a simple Wait / Notify example. I am utilizing an Object for synchronization purpose. You can synchronize on This or any other object. However, a dedicated object that you use only for synchronization will give you a better understanding of code and eases debugging. package com.sheidaei.sampleThread; /** * Created with IntelliJ IDEA. * User: shahin *…