Hello,
I am trying to build thread inside thread in this way:
Thread A (start)
{
successHandler = false
commandA
commandB
Thread B (start)
if (successHandler )
commandC
Handler B
{
successHandler = true
}
}
Handler A
{
end
}
Somehow I got stucked after HandlerB and commandC is not activated. Why
is that? Thank u!
}
*** Sent via Developersdex http://www.developersdex.com ***
Comment