Example #1
0
 private void waitEndMoving(final DeviceProxy proxy) throws DevFailed {
   waitTask = new WaitStateTask(proxy.get_name(), DevState.MOVING, 100, false);
   waitTask.run();
   if (waitTask.hasFailed()) {
     throw waitTask.getDevFailed();
   }
 }
Example #2
0
 public synchronized void cancel() {
   if (waitTask != null) {
     logger.debug("cancelling waiting for DR");
     waitTask.cancel();
   }
   cancel = true;
 }