class java.util.concurrent.Executors$DelegatedExecutorService implements java.util.concurrent.ExecutorService
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: java.util.concurrent.Executors$DelegatedExecutorService
  super_class: java.lang.Object
{
  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 684
            aload 0 /* this */
            invokespecial java.lang.Object.<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=3, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.lang.Runnable command
         0: .line 687
            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
         1: .line 688
            goto 3
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 2
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 2
            athrow
      StackMap locals:
      StackMap stack:
         3: aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         4: .line 689
            return
        end local 1 // java.lang.Runnable command
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    5     1  command  Ljava/lang/Runnable;
      Exception table:
        from    to  target  type
           0     2       2  any
    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 690
            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=3, args_size=1
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
         0: .line 693
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.shutdownNow:()Ljava/util/List;
            astore 2
         1: .line 694
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 693
            aload 2
            areturn
         3: .line 694
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 1
            athrow
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
      Exception table:
        from    to  target  type
           0     1       3  any
    Signature: ()Ljava/util/List<Ljava/lang/Runnable;>;

  public boolean isShutdown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
         0: .line 698
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.isShutdown:()Z
            istore 2
         1: .line 699
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 698
            iload 2
            ireturn
         3: .line 699
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 1
            athrow
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
      Exception table:
        from    to  target  type
           0     1       3  any

  public boolean isTerminated();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
         0: .line 703
            aload 0 /* this */
            getfield java.util.concurrent.Executors$DelegatedExecutorService.e:Ljava/util/concurrent/ExecutorService;
            invokeinterface java.util.concurrent.ExecutorService.isTerminated:()Z
            istore 2
         1: .line 704
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 703
            iload 2
            ireturn
         3: .line 704
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 1
            athrow
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
      Exception table:
        from    to  target  type
           0     1       3  any

  public boolean awaitTermination(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, 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 709
            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
            istore 5
         1: .line 710
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 709
            iload 5
            ireturn
         3: .line 710
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 4
            athrow
        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    4     0     this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    4     1  timeout  J
            0    4     3     unit  Ljava/util/concurrent/TimeUnit;
      Exception table:
        from    to  target  type
           0     1       3  any
    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=4, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.lang.Runnable task
         0: .line 714
            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;
            astore 3
         1: .line 715
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 714
            aload 3
            areturn
         3: .line 715
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 2
            athrow
        end local 1 // java.lang.Runnable task
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    4     1  task  Ljava/lang/Runnable;
      Exception table:
        from    to  target  type
           0     1       3  any
    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=4, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.util.concurrent.Callable task
         0: .line 719
            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;
            astore 3
         1: .line 720
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 719
            aload 3
            areturn
         3: .line 720
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 2
            athrow
        end local 1 // java.util.concurrent.Callable task
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    4     1  task  Ljava/util/concurrent/Callable<TT;>;
      Exception table:
        from    to  target  type
           0     1       3  any
    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=5, 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 724
            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;
            astore 4
         1: .line 725
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 724
            aload 4
            areturn
         3: .line 725
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 3
            athrow
        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    4     0    this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    4     1    task  Ljava/lang/Runnable;
            0    4     2  result  TT;
      Exception table:
        from    to  target  type
           0     1       3  any
    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=4, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.util.Collection tasks
         0: .line 730
            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;
            astore 3
         1: .line 731
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 730
            aload 3
            areturn
         3: .line 731
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 2
            athrow
        end local 1 // java.util.Collection tasks
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    4     1  tasks  Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;
      Exception table:
        from    to  target  type
           0     1       3  any
    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=7, 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 737
            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;
            astore 6
         1: .line 738
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 737
            aload 6
            areturn
         3: .line 738
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 5
            athrow
        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    4     0     this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    4     1    tasks  Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;
            0    4     2  timeout  J
            0    4     4     unit  Ljava/util/concurrent/TimeUnit;
      Exception table:
        from    to  target  type
           0     1       3  any
    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=4, args_size=2
        start local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
        start local 1 // java.util.Collection tasks
         0: .line 743
            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;
            astore 3
         1: .line 744
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 743
            aload 3
            areturn
         3: .line 744
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 2
            athrow
        end local 1 // java.util.Collection tasks
        end local 0 // java.util.concurrent.Executors$DelegatedExecutorService this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    4     1  tasks  Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;
      Exception table:
        from    to  target  type
           0     1       3  any
    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=7, 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 750
            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;
            astore 6
         1: .line 751
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
         2: .line 750
            aload 6
            areturn
         3: .line 751
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5
            aload 0 /* this */
            invokestatic java.lang.ref.Reference.reachabilityFence:(Ljava/lang/Object;)V
            aload 5
            athrow
        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    4     0     this  Ljava/util/concurrent/Executors$DelegatedExecutorService;
            0    4     1    tasks  Ljava/util/Collection<+Ljava/util/concurrent/Callable<TT;>;>;
            0    4     2  timeout  J
            0    4     4     unit  Ljava/util/concurrent/TimeUnit;
      Exception table:
        from    to  target  type
           0     1       3  any
    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:
  private DelegatedExecutorService = java.util.concurrent.Executors$DelegatedExecutorService of java.util.concurrent.Executors