calling my own thread
Hi,
I have few questions calling my own thread.
publicclass Aimplements Runnable
{
Thread t;
class A
{
t=new Thread();
t.start();
}
publicvoid run()
{
// Some code goes here
// I want to restart Thread t again from here.
}
publicclass B
{
// How do I start Thread t in class A from this class
new A();
// will the above statement work
}
Thanks for your replies and suggestions,
@debug

