Hello!
I create a class which extends Thread.
I can start the thread with run() method but the new thread does not runs parallel on my main application. I try the start() method which runs perfect and parallel to my to my main application.
-Here i could not understand what is the difference start() and run() methods clearly.
And after here i could not found how to wait and resume the thread. Java 1.7 has changed many methods. They works but they don't recommend many thinks... I need to support 1.6 and 1.7 java on my application...
I am waiting for your help...
Thank you!