1 4 package com.tc.simulator.control; 5 6 import com.tc.util.TCTimeoutException; 7 8 public interface Control { 9 public void waitForStart(long timeout) throws TCTimeoutException, TCBrokenBarrierException, InterruptedException ; 10 11 public void notifyComplete(); 12 13 16 public boolean waitForAllComplete(long timeout) throws InterruptedException ; 17 } 18 | Popular Tags |