Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for CheckedCallable (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

            threadAssertFalse(Thread.interrupted());
          } catch (Throwable t) {
            threadUnexpectedException(t);
          }
        }
      }
    
      public abstract class CheckedCallable<T> implements Callable<T> {
        protected abstract T realCall() throws Throwable;
    
        @Override
        public final T call() {
          try {
            return realCall();
          } catch (Throwable t) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 20:07:52 GMT 2025
    - 37.8K bytes
    - Click Count (0)
Back to Top