Ciao a tutti,
avrei bisogno di poter mandare in stop e in play a mio piacimento un thread. Visto che il metodo stop() è deprecato, sto utilizzando il metodo interrupt, è solo che se faccio

codice:
Thread t = new Thread();
t.start();
t.interrupt();
t.start();
non gli piace, mi da errore.

La mia domanda è come faccio a riesumare un thread interrotto?