Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ForwardingListeningExecutorService (0.22 sec)

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

     * invoke methods, they invoke methods on the {@code ForwardingListeningExecutorService}.
     *
     * @author Isaac Shum
     * @since 10.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    public abstract class ForwardingListeningExecutorService extends ForwardingExecutorService
        implements ListeningExecutorService {
      /** Constructor for use by subclasses. */
      protected ForwardingListeningExecutorService() {}
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ForwardingListeningExecutorService.java

     * invoke methods, they invoke methods on the {@code ForwardingListeningExecutorService}.
     *
     * @author Isaac Shum
     * @since 10.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    public abstract class ForwardingListeningExecutorService extends ForwardingExecutorService
        implements ListeningExecutorService {
      /** Constructor for use by subclasses. */
      protected ForwardingListeningExecutorService() {}
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/ForwardingListeningExecutorServiceTest.java

    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /** Unit tests for {@link ForwardingListeningExecutorService} */
    @NullUnmarked
    public class ForwardingListeningExecutorServiceTest extends TestCase {
      public void testForwarding() {
        ForwardingObjectTester.testForwardingObject(ForwardingListeningExecutorService.class);
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 1006 bytes
    - Viewed (0)
Back to top