Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for WrappingScheduledExecutorService (0.14 seconds)

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

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Test for {@link WrappingScheduledExecutorService}
     *
     * @author Luke Sandberg
     */
    @NullUnmarked
    @GwtIncompatible
    @J2ktIncompatible
    public class WrappingScheduledExecutorServiceTest extends TestCase {
      public void testSchedule() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/WrappingScheduledExecutorServiceTest.java

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Test for {@link WrappingScheduledExecutorService}
     *
     * @author Luke Sandberg
     */
    @NullUnmarked
    @GwtIncompatible
    @J2ktIncompatible
    public class WrappingScheduledExecutorServiceTest extends TestCase {
      public void testSchedule() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

      static ScheduledExecutorService renamingDecorator(
          ScheduledExecutorService service, Supplier<String> nameSupplier) {
        checkNotNull(service);
        checkNotNull(nameSupplier);
        return new WrappingScheduledExecutorService(service) {
          @Override
          protected <T extends @Nullable Object> Callable<T> wrapTask(Callable<T> callable) {
            return threadRenaming(callable, nameSupplier);
          }
    
          @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Jan 28 22:39:02 GMT 2026
    - 45.6K bytes
    - Click Count (0)
Back to Top