class java.util.concurrent.Executors$DelegatedExecutorService extends java.util.concurrent.AbstractExecutorService
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: java.util.concurrent.Executors$DelegatedExecutorService
  super_class: java.util.concurrent.AbstractExecutorService
{
  private final java.util.concurrent.ExecutorService e;
    descriptor: Ljava/util/concurrent/ExecutorService;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.util.concurrent.ExecutorService);
    descriptor: (Ljava/util/concurrent/ExecutorService;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.util.concurrent.ExecutorService executor
         0: .line 667
            aload 0 /* this */
            invokespecial java.util.concurrent.AbstractExecutorService.<init>:()V
            aload 0 /* this */
            aload 1 /* executor */
            putfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            return
        end local 1 // java.util.concurrent.ExecutorService executor
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1  executor  Ljava/util/concurrent/ExecutorService;
    MethodParameters:
          Name  Flags
      executor  

  public void execute(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.lang.Runnable command
         0: .line 668
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            aload 1 /* command */
            invokeinterface java.util.concurrent.ExecutorService.execute:(Ljava/lang/Runnable;)V
            return
        end local 1 // java.lang.Runnable command
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1  command  Ljava/lang/Runnable;
    MethodParameters:
         Name  Flags
      command  

  public void shutdown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
         0: .line 669
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.shutdown:()V
            return
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;

  public java.util.List<java.lang.Runnable> shutdownNow();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
         0: .line 670
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.shutdownNow:()Ljava/util/List;
            areturn
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
    Signature: ()Ljava/util/List<Ljava/lang/Runnable;>;

  public boolean isShutdown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
         0: .line 671
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.isShutdown:()Z
            ireturn
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;

  public boolean isTerminated();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
         0: .line 672
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.isTerminated:()Z
            ireturn
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;

  public boolean awaitTermination(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 675
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            lload 1 /* timeout */
            aload 3 /* unit */
            invokeinterface java.util.concurrent.ExecutorService.awaitTermination:(JLjava/util/concurrent/TimeUnit;)Z
            ireturn
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1  timeout  J
            0    1     3     unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.lang.InterruptedException
    MethodParameters:
         Name  Flags
      timeout  
      unit     

  public java.util.concurrent.Future<?> submit(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)Ljava/util/concurrent/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.lang.Runnable task
         0: .line 678
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            aload 1 /* task */
            invokeinterface java.util.concurrent.ExecutorService.submit:(Ljava/lang/Runnable;)Ljava/util/concurrent/Future;
            areturn
        end local 1 // java.lang.Runnable task
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1  task  Ljava/lang/Runnable;
    Signature: (Ljava/lang/Runnable;)Ljava/util/concurrent/Future<*>;
    MethodParameters:
      Name  Flags
      task  

  public <T> java.util.concurrent.Future<T> submit(java.util.concurrent.Callable<T>);
    descriptor: (Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.util.concurrent.Callable task
         0: .line 681
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            aload 1 /* task */
            invokeinterface java.util.concurrent.ExecutorService.submit:(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Future;
            areturn
        end local 1 // java.util.concurrent.Callable task
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1  task  Ljava/util/concurrent/Callable<TT;>;
    Signature: <T:Ljava/lang/Object;>(Ljava/util/concurrent/Callable<TT;>;)Ljava/util/concurrent/Future<TT;>;
    MethodParameters:
      Name  Flags
      task  

  public <T> java.util.concurrent.Future<T> submit(java.lang.Runnable, T);
    descriptor: (Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.lang.Runnable task
        start local 2 // java.lang.Object result
         0: .line 684
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            aload 1 /* task */
            aload 2 /* result */
            invokeinterface java.util.concurrent.ExecutorService.submit:(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/Future;
            areturn
        end local 2 // java.lang.Object result
        end local 1 // java.lang.Runnable task
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1    task  Ljava/lang/Runnable;
            0    1     2  result  TT;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/Runnable;TT;)Ljava/util/concurrent/Future<TT;>;
    MethodParameters:
        Name  Flags
      task    
      result  

  public <T> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>>);
    descriptor: (Ljava/util/Collection;)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.util.Collection tasks
         0: .line 688
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            aload 1 /* tasks */
            invokeinterface java.util.concurrent.ExecutorService.invokeAll:(Ljava/util/Collection;)Ljava/util/List;
            areturn
        end local 1 // java.util.Collection tasks
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1  tasks  Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;
    Exceptions:
      throws java.lang.InterruptedException
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;)Ljava/util/List<Ljava/util/concurrent/Future<TT;>;>;
    MethodParameters:
       Name  Flags
      tasks  

  public <T> java.util.List<java.util.concurrent.Future<T>> invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.util.Collection tasks
        start local 2 // long timeout
        start local 4 // java.util.concurrent.TimeUnit unit
         0: .line 693
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            aload 1 /* tasks */
            lload 2 /* timeout */
            aload 4 /* unit */
            invokeinterface java.util.concurrent.ExecutorService.invokeAll:(Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/util/List;
            areturn
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long timeout
        end local 1 // java.util.Collection tasks
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1    tasks  Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;
            0    1     2  timeout  J
            0    1     4     unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.lang.InterruptedException
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;JLjava/util/concurrent/TimeUnit;)Ljava/util/List<Ljava/util/concurrent/Future<TT;>;>;
    MethodParameters:
         Name  Flags
      tasks    
      timeout  
      unit     

  public <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>>);
    descriptor: (Ljava/util/Collection;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.util.Collection tasks
         0: .line 697
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            aload 1 /* tasks */
            invokeinterface java.util.concurrent.ExecutorService.invokeAny:(Ljava/util/Collection;)Ljava/lang/Object;
            areturn
        end local 1 // java.util.Collection tasks
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1  tasks  Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;
    Exceptions:
      throws java.lang.InterruptedException, java.util.concurrent.ExecutionException
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;)TT;
    MethodParameters:
       Name  Flags
      tasks  

  public <T> T invokeAny(java.util.Collection<? extends java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.util.Collection tasks
        start local 2 // long timeout
        start local 4 // java.util.concurrent.TimeUnit unit
         0: .line 702
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            aload 1 /* tasks */
            lload 2 /* timeout */
            aload 4 /* unit */
            invokeinterface java.util.concurrent.ExecutorService.invokeAny:(Ljava/util/Collection;JLjava/util/concurrent/TimeUnit;)Ljava/lang/Object;
            areturn
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long timeout
        end local 1 // java.util.Collection tasks
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    1     1    tasks  Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;
            0    1     2  timeout  J
            0    1     4     unit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.lang.InterruptedException, java.util.concurrent.ExecutionException, java.util.concurrent.TimeoutException
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;JLjava/util/concurrent/TimeUnit;)TT;
    MethodParameters:
         Name  Flags
      tasks    
      timeout  
      unit     
}
SourceFile: "Executors.java"
NestHost: java.util.concurrent.Executors
InnerClasses:
  DelegatedExecutorService = java.util.concurrent.Executors$DelegatedExecutorService of java.util.concurrent.Executors