BowlerKernel
ThreadUtil.java
Go to the documentation of this file.
1 package com.neuronrobotics.sdk.util;
2 
3 // TODO: Auto-generated Javadoc
7 public class ThreadUtil {
8 
14  public static void wait(int time) {
15  try { Thread.sleep(time); } catch (InterruptedException e) { throw new RuntimeException(e); }
16  }
17 
24  public static void wait(int time0, int time1) {
25  try { Thread.sleep(time0, time1); } catch (InterruptedException e) {throw new RuntimeException(e); }
26  }
27 }
static void wait(int time0, int time1)
Definition: ThreadUtil.java:24