Example #1
0
 private void pause(String delayInMillis) {
   try {
     Thread.sleep(Long.parseLong(delayInMillis));
   } catch (Exception e) {
     LOG.warn("Pause command interrupted", e);
   }
 }
Example #2
0
 private void delayIfNeeded(long delay) {
   if (delay > 0) {
     try {
       Thread.sleep(delay);
     } catch (Exception e) {
       LOG.warn("Step delay sleep command interrupted", e);
     }
   }
 }