Is it possible to create a worker thread within a worker thread? If so, any issues of doing this ?
Printable View
Is it possible to create a worker thread within a worker thread? If so, any issues of doing this ?
No issues. Infact you always create a thread from within a thread; there is no other way/place to create a thread.
Is there a specific issue that you are expecting? Of course you will take care of all the thread related issues such as thread communications, synchronizations etc.