Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ForwardingExecutorService (0.17 sec)

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

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

    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /** Unit tests for {@link ForwardingExecutorService} */
    @NullUnmarked
    public class ForwardingExecutorServiceTest extends TestCase {
      public void testForwarding() {
        ForwardingObjectTester.testForwardingObject(ForwardingExecutorService.class);
      }
    
      public void testNoForwardingOfDefaultMethod() throws Exception {
        ExecutorService delegate =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 18:45:52 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ForwardingListeningExecutorService.java

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

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

     * wrap} tasks before they are submitted to the underlying executor.
     *
     * <p>Note that task wrapping may occur even if the task is never executed.
     *
     * <p>For delegation without task-wrapping, see {@link ForwardingExecutorService}.
     *
     * @author Chris Nokleberg
     */
    @J2ktIncompatible
    @GwtIncompatible
    abstract class WrappingExecutorService implements ExecutorService {
      private final ExecutorService 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)
Back to top