- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for enterWhenUninterruptibly (0.07 sec)
-
android/guava/src/com/google/common/util/concurrent/ServiceManager.java
} } void addListener(Listener listener, Executor executor) { listeners.addListener(listener, executor); } void awaitHealthy() { monitor.enterWhenUninterruptibly(awaitHealthGuard); try { checkHealthy(); } finally { monitor.leave(); } } void awaitHealthy(long timeout, TimeUnit unit) throws TimeoutException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 33.2K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Monitor.java
* @return whether the monitor was entered, which guarantees that the guard is now satisfied * @since 28.0 (but only since 33.4.0 in the Android flavor) */ public boolean enterWhenUninterruptibly(Guard guard, Duration time) { return enterWhenUninterruptibly(guard, toNanosSaturated(time), TimeUnit.NANOSECONDS); } /** * Enters this monitor when the guard is satisfied. Blocks at most the given time, including both
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 42.8K bytes - Viewed (0)