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