Hi,
I am trying to schedule a task say a (
java class) task
which extends
.
My Timer object
calls the class
using
a new
thread which performs the schedule starts.
Another Timer obj Timer(name2) calls the same TimerTask - MyTask using timer.schedule from a different method.
Is there any possibility that i get the timer object's name.
Mean to say
I want this name1 and name2 in my task class
.
Is there any possibility?
Cos i have to perform the same task with diff names under diff threads with corresponding names.
Its very urgent.