Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for trySetStarted (0.1 sec)

  1. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

        AsyncCallable<T> task =
            new AsyncCallable<T>() {
              @Override
              public ListenableFuture<T> call() throws Exception {
                if (!taskExecutor.trySetStarted()) {
                  return immediateCancelledFuture();
                }
                return callable.call();
              }
    
              @Override
              public String toString() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

        AsyncCallable<T> task =
            new AsyncCallable<T>() {
              @Override
              public ListenableFuture<T> call() throws Exception {
                if (!taskExecutor.trySetStarted()) {
                  return immediateCancelledFuture();
                }
                return callable.call();
              }
    
              @Override
              public String toString() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top