Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for AbstractListeningExecutorService (0.09 sec)

  1. android/guava/src/com/google/common/util/concurrent/DirectExecutorService.java

    import java.util.concurrent.RejectedExecutionException;
    import java.util.concurrent.TimeUnit;
    
    /** See newDirectExecutorService javadoc for behavioral notes. */
    @GwtIncompatible
    final class DirectExecutorService extends AbstractListeningExecutorService {
    
      /** Lock used whenever accessing the state variables (runningTasks, shutdown) of the executor */
      private final Object lock = new Object();
    
      /*
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Dec 16 14:23:59 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/MoreExecutors.java

            ? (ListeningScheduledExecutorService) delegate
            : new ScheduledListeningDecorator(delegate);
      }
    
      @GwtIncompatible // TODO
      private static class ListeningDecorator extends AbstractListeningExecutorService {
        private final ExecutorService delegate;
    
        ListeningDecorator(ExecutorService delegate) {
          this.delegate = checkNotNull(delegate);
        }
    
        @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 45.2K bytes
    - Viewed (0)
Back to top