예제 #1
0
 public void fork(Runnable runnable, String msg) throws MonitorCanceledException {
   fork(1, runnable, msg);
 }
예제 #2
0
 public void fork(Runnable runnable) throws MonitorCanceledException {
   fork(1, runnable, null);
 }
예제 #3
0
 public void fork(int workFromParent, Runnable runnable) throws MonitorCanceledException {
   fork(workFromParent, runnable, null);
 }