- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for afterRanInterruptiblySuccess (0.12 seconds)
-
android/guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java
boolean isDone() { return false; } @Override String toPendingString() { return ""; } @Override void afterRanInterruptiblySuccess(String result) { taskResult.set(result); } @Override void afterRanInterruptiblyFailure(Throwable error) { taskResult.setException(error); }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 7.1K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java
waitForInterrupt(currentThread); } if (run) { if (error == null) { // The cast is safe because of the `run` and `error` checks. afterRanInterruptiblySuccess(uncheckedCastNullableTToT(result)); } else { afterRanInterruptiblyFailure(error); } } } } @SuppressWarnings({
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 10K bytes - Click Count (0)