- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for maybePropagateCancellationTo (0.1 seconds)
-
android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java
abstract void setResult(@ParametricNullness T result); @Override protected final void afterDone() { @RetainedLocalRef ListenableFuture<? extends I> localInputFuture = inputFuture; maybePropagateCancellationTo(localInputFuture); this.inputFuture = null; this.function = null; } @Override protected @Nullable String pendingToString() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 20 18:03:37 GMT 2025 - 10.8K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AbstractFuture.java
* the given future (if available). */ @SuppressWarnings("nullness") // TODO(b/147136275): Remove once our checker understands & and |. final void maybePropagateCancellationTo(@Nullable Future<?> related) { if (related != null & isCancelled()) { related.cancel(wasInterrupted()); } } /**
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)