スレッドが特定の処理を行っている間、実行中の他のすべてのスレッドを一時停止することはできますか? 私の質問をするために、次の方法があると仮定しましょう
public void doActions()
{
......
......
......
if(count == 30)
{
//This is where I want to pause all other running threads
}
......
......
......
}
よろしく!