List of usage examples for java.lang ThreadGroup wait
public final native void wait(long timeoutMillis) throws InterruptedException;
From source file:Main.java
public static void threadGroupJoin(ThreadGroup threadGroup) throws InterruptedException { synchronized (threadGroup) { while (threadGroup.activeCount() > 0) { threadGroup.wait(10); }/*from www. jav a 2 s . co m*/ } }