Package dev.aherscu.qa.testing.utils
Class ThreadUtils
- java.lang.Object
-
- dev.aherscu.qa.testing.utils.ThreadUtils
-
public final class ThreadUtils extends Object
Thread utilities.- Author:
- aherscu
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
join(Thread thread, int timeoutMs)
Safe alternative toThread.join()
.static void
sleep(long millis)
Safe alternative toThread.sleep(long)
-
-
-
Method Detail
-
join
public static void join(Thread thread, int timeoutMs)
Safe alternative toThread.join()
.- Parameters:
thread
- the thread to jointimeoutMs
- timeout in milliseconds
-
sleep
public static void sleep(long millis)
Safe alternative toThread.sleep(long)
- Parameters:
millis
- how many milliseconds to sleep
-
-