Is it possible to use ACE threads in C++ for execution of different tasks?
e.g. suppose the user creates two threads named threadA and threadB. Once they finish their execution on certain functions, can we use the same thread threadA and threadB for some other operation?
If possible then how?