- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for DelegatingToFuture (0.07 seconds)
-
android/guava/src/com/google/common/util/concurrent/AbstractFuture.java
/** Returns whether {@code obj} is <b>not</b> an instance of {@code DelegatingToFuture}. */ // This method lets us: // - avoid exposing DelegatingToFuture to the whole package // - avoid fighting with the relative operator precedence of `instanceof` and `!` static boolean notInstanceOfDelegatingToFuture(@Nullable Object obj) { return !(obj instanceof DelegatingToFuture); } @Override public boolean isDone() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 14:39:00 GMT 2026 - 43.6K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java
// * Be responsive to interruption // * Don't create Waiter nodes if you aren't going to park, this helps reduce contention on // waitersField. // * Future completion is defined by when #valueField becomes non-null/non DelegatingToFuture // * Future completion can be observed if the waitersField field contains a TOMBSTONE // Timed Get // There are a few design constraints to consider
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 33.2K bytes - Click Count (0)