Is there a way where i can i use Thread inside Thread ? if so how to use that in Thread Safety Manner
I tried this Thread inside Thread where i got wrong result sometime. Please Help me how to figure out Thread inside Thread using Thread Safety
for(int i=0; i<numExpression; i++)
{
final int _i = i;
final SDISQueryInfo _qryInfo = sdisQueryInfo;
final SDISQueryComponent _qryComponent = qryCompoents;
TCreate[i] = new Thread(new Runnable()
{
public void run()
{
_qryComponent.prepare(_qryInfo);
}
});
TCreate[i].setName(_qryInfo.getQueryTerm(_i));
TCreate[i].start();
}
for(Thread t : TCreate)
{
t.join();
}
Here in this _qryCompoents.prepare(_sdisQueryInfo) is function which i am calling. This function has thread inside in it...
Let me know if you need more details.
Thanks in Advance
Sorry for this question i appolgies .. i couldnt able to remove this question