Add Device Transfer via WiFi Direct groundwork.

This commit is contained in:
Cody Henthorne
2021-03-03 16:03:49 -05:00
committed by GitHub
parent fd9c420dc8
commit e7f233db5b
38 changed files with 2232 additions and 0 deletions

View File

@@ -87,4 +87,10 @@ public final class ThreadUtil {
throw new AssertionError(e);
}
}
public static void interruptableSleep(long millis) {
try {
Thread.sleep(millis);
} catch (InterruptedException ignored) { }
}
}