Ok... So.. I am studying Threading.. so... it is not the simpliest
java subject. I want to make sure I understand the wait() method in the java.lang.Object class.
For me.. wait() is very similar to join(). The difference is that when you join another
Thread that Thread that joined will stop being at the runnable state until the Thread it joines finishes. Now wait() is pretty much the same deal. Just that with wait() the Thread that is being waited can let the waiting Thread go on at any point of time with a call to notify() or notifyAll().
Ok.. so there it is... correct me or add stuff. Thanks for your help