Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WrappingExecutorService (0.43 sec)

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

     *
     * @author Chris Nokleberg
     */
    @J2ktIncompatible
    @GwtIncompatible
    abstract class WrappingExecutorService implements ExecutorService {
      private final ExecutorService delegate;
    
      protected WrappingExecutorService(ExecutorService delegate) {
        this.delegate = checkNotNull(delegate);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Test for {@link WrappingExecutorService}
     *
     * @author Chris Nokleberg
     */
    @NullUnmarked
    public class WrappingExecutorServiceTest extends TestCase {
      private static final String RESULT_VALUE = "ran";
    
      // Uninteresting delegations
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/WrappingScheduledExecutorService.java

     *
     * <p>Note that task wrapping may occur even if the task is never executed.
     *
     * @author Luke Sandberg
     */
    @J2ktIncompatible
    @GwtIncompatible
    abstract class WrappingScheduledExecutorService extends WrappingExecutorService
        implements ScheduledExecutorService {
      final ScheduledExecutorService delegate;
    
      protected WrappingScheduledExecutorService(ScheduledExecutorService delegate) {
        super(delegate);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/WrappingScheduledExecutorService.java

     *
     * <p>Note that task wrapping may occur even if the task is never executed.
     *
     * @author Luke Sandberg
     */
    @J2ktIncompatible
    @GwtIncompatible
    abstract class WrappingScheduledExecutorService extends WrappingExecutorService
        implements ScheduledExecutorService {
      final ScheduledExecutorService delegate;
    
      protected WrappingScheduledExecutorService(ScheduledExecutorService delegate) {
        super(delegate);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top