public class org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean extends org.springframework.scheduling.concurrent.ExecutorConfigurationSupport implements org.springframework.beans.factory.FactoryBean<java.util.concurrent.ExecutorService>, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.DisposableBean
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean
  super_class: org.springframework.scheduling.concurrent.ExecutorConfigurationSupport
{
  private int corePoolSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int maxPoolSize;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int keepAliveSeconds;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean allowCoreThreadTimeOut;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int queueCapacity;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean exposeUnconfigurableExecutor;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.util.concurrent.ExecutorService exposedExecutor;
    descriptor: Ljava/util/concurrent/ExecutorService;
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
         0: .line 67
            aload 0 /* this */
            invokespecial org.springframework.scheduling.concurrent.ExecutorConfigurationSupport.<init>:()V
         1: .line 70
            aload 0 /* this */
            iconst_1
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.corePoolSize:I
         2: .line 72
            aload 0 /* this */
            ldc 2147483647
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.maxPoolSize:I
         3: .line 74
            aload 0 /* this */
            bipush 60
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.keepAliveSeconds:I
         4: .line 76
            aload 0 /* this */
            iconst_0
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.allowCoreThreadTimeOut:Z
         5: .line 78
            aload 0 /* this */
            ldc 2147483647
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.queueCapacity:I
         6: .line 80
            aload 0 /* this */
            iconst_0
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.exposeUnconfigurableExecutor:Z
         7: .line 67
            return
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;

  public void setCorePoolSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
        start local 1 // int corePoolSize
         0: .line 91
            aload 0 /* this */
            iload 1 /* corePoolSize */
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.corePoolSize:I
         1: .line 92
            return
        end local 1 // int corePoolSize
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
            0    2     1  corePoolSize  I
    MethodParameters:
              Name  Flags
      corePoolSize  

  public void setMaxPoolSize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
        start local 1 // int maxPoolSize
         0: .line 99
            aload 0 /* this */
            iload 1 /* maxPoolSize */
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.maxPoolSize:I
         1: .line 100
            return
        end local 1 // int maxPoolSize
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
            0    2     1  maxPoolSize  I
    MethodParameters:
             Name  Flags
      maxPoolSize  

  public void setKeepAliveSeconds(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
        start local 1 // int keepAliveSeconds
         0: .line 107
            aload 0 /* this */
            iload 1 /* keepAliveSeconds */
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.keepAliveSeconds:I
         1: .line 108
            return
        end local 1 // int keepAliveSeconds
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
            0    2     1  keepAliveSeconds  I
    MethodParameters:
                  Name  Flags
      keepAliveSeconds  

  public void setAllowCoreThreadTimeOut(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
        start local 1 // boolean allowCoreThreadTimeOut
         0: .line 118
            aload 0 /* this */
            iload 1 /* allowCoreThreadTimeOut */
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.allowCoreThreadTimeOut:Z
         1: .line 119
            return
        end local 1 // boolean allowCoreThreadTimeOut
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    2     0                    this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
            0    2     1  allowCoreThreadTimeOut  Z
    MethodParameters:
                        Name  Flags
      allowCoreThreadTimeOut  

  public void setQueueCapacity(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
        start local 1 // int queueCapacity
         0: .line 130
            aload 0 /* this */
            iload 1 /* queueCapacity */
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.queueCapacity:I
         1: .line 131
            return
        end local 1 // int queueCapacity
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
            0    2     1  queueCapacity  I
    MethodParameters:
               Name  Flags
      queueCapacity  

  public void setExposeUnconfigurableExecutor(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
        start local 1 // boolean exposeUnconfigurableExecutor
         0: .line 142
            aload 0 /* this */
            iload 1 /* exposeUnconfigurableExecutor */
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.exposeUnconfigurableExecutor:Z
         1: .line 143
            return
        end local 1 // boolean exposeUnconfigurableExecutor
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot                          Name  Signature
            0    2     0                          this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
            0    2     1  exposeUnconfigurableExecutor  Z
    MethodParameters:
                              Name  Flags
      exposeUnconfigurableExecutor  

  protected java.util.concurrent.ExecutorService initializeExecutor(java.util.concurrent.ThreadFactory, java.util.concurrent.RejectedExecutionHandler);
    descriptor: (Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)Ljava/util/concurrent/ExecutorService;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
        start local 1 // java.util.concurrent.ThreadFactory threadFactory
        start local 2 // java.util.concurrent.RejectedExecutionHandler rejectedExecutionHandler
         0: .line 150
            aload 0 /* this */
            aload 0 /* this */
            getfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.queueCapacity:I
            invokevirtual org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.createQueue:(I)Ljava/util/concurrent/BlockingQueue;
            astore 3 /* queue */
        start local 3 // java.util.concurrent.BlockingQueue queue
         1: .line 151
            aload 0 /* this */
            aload 0 /* this */
            getfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.corePoolSize:I
            aload 0 /* this */
            getfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.maxPoolSize:I
         2: .line 152
            aload 0 /* this */
            getfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.keepAliveSeconds:I
            aload 3 /* queue */
            aload 1 /* threadFactory */
            aload 2 /* rejectedExecutionHandler */
         3: .line 151
            invokevirtual org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.createExecutor:(IIILjava/util/concurrent/BlockingQueue;Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)Ljava/util/concurrent/ThreadPoolExecutor;
            astore 4 /* executor */
        start local 4 // java.util.concurrent.ThreadPoolExecutor executor
         4: .line 153
            aload 0 /* this */
            getfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.allowCoreThreadTimeOut:Z
            ifeq 6
         5: .line 154
            aload 4 /* executor */
            iconst_1
            invokevirtual java.util.concurrent.ThreadPoolExecutor.allowCoreThreadTimeOut:(Z)V
         6: .line 158
      StackMap locals: java.util.concurrent.BlockingQueue java.util.concurrent.ThreadPoolExecutor
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.exposeUnconfigurableExecutor:Z
            ifeq 8
         7: .line 159
            aload 4 /* executor */
            invokestatic java.util.concurrent.Executors.unconfigurableExecutorService:(Ljava/util/concurrent/ExecutorService;)Ljava/util/concurrent/ExecutorService;
            goto 9
      StackMap locals:
      StackMap stack: org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean
         8: aload 4 /* executor */
         9: .line 158
      StackMap locals: org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean java.util.concurrent.ThreadFactory java.util.concurrent.RejectedExecutionHandler java.util.concurrent.BlockingQueue java.util.concurrent.ThreadPoolExecutor
      StackMap stack: org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean java.util.concurrent.ExecutorService
            putfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.exposedExecutor:Ljava/util/concurrent/ExecutorService;
        10: .line 161
            aload 4 /* executor */
            areturn
        end local 4 // java.util.concurrent.ThreadPoolExecutor executor
        end local 3 // java.util.concurrent.BlockingQueue queue
        end local 2 // java.util.concurrent.RejectedExecutionHandler rejectedExecutionHandler
        end local 1 // java.util.concurrent.ThreadFactory threadFactory
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0   11     0                      this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
            0   11     1             threadFactory  Ljava/util/concurrent/ThreadFactory;
            0   11     2  rejectedExecutionHandler  Ljava/util/concurrent/RejectedExecutionHandler;
            1   11     3                     queue  Ljava/util/concurrent/BlockingQueue<Ljava/lang/Runnable;>;
            4   11     4                  executor  Ljava/util/concurrent/ThreadPoolExecutor;
    MethodParameters:
                          Name  Flags
      threadFactory             
      rejectedExecutionHandler  

  protected java.util.concurrent.ThreadPoolExecutor createExecutor(int, int, int, java.util.concurrent.BlockingQueue<java.lang.Runnable>, java.util.concurrent.ThreadFactory, java.util.concurrent.RejectedExecutionHandler);
    descriptor: (IIILjava/util/concurrent/BlockingQueue;Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)Ljava/util/concurrent/ThreadPoolExecutor;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=7, args_size=7
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
        start local 1 // int corePoolSize
        start local 2 // int maxPoolSize
        start local 3 // int keepAliveSeconds
        start local 4 // java.util.concurrent.BlockingQueue queue
        start local 5 // java.util.concurrent.ThreadFactory threadFactory
        start local 6 // java.util.concurrent.RejectedExecutionHandler rejectedExecutionHandler
         0: .line 181
            new java.util.concurrent.ThreadPoolExecutor
            dup
            iload 1 /* corePoolSize */
            iload 2 /* maxPoolSize */
         1: .line 182
            iload 3 /* keepAliveSeconds */
            i2l
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
            aload 4 /* queue */
            aload 5 /* threadFactory */
            aload 6 /* rejectedExecutionHandler */
         2: .line 181
            invokespecial java.util.concurrent.ThreadPoolExecutor.<init>:(IIJLjava/util/concurrent/TimeUnit;Ljava/util/concurrent/BlockingQueue;Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)V
            areturn
        end local 6 // java.util.concurrent.RejectedExecutionHandler rejectedExecutionHandler
        end local 5 // java.util.concurrent.ThreadFactory threadFactory
        end local 4 // java.util.concurrent.BlockingQueue queue
        end local 3 // int keepAliveSeconds
        end local 2 // int maxPoolSize
        end local 1 // int corePoolSize
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    3     0                      this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
            0    3     1              corePoolSize  I
            0    3     2               maxPoolSize  I
            0    3     3          keepAliveSeconds  I
            0    3     4                     queue  Ljava/util/concurrent/BlockingQueue<Ljava/lang/Runnable;>;
            0    3     5             threadFactory  Ljava/util/concurrent/ThreadFactory;
            0    3     6  rejectedExecutionHandler  Ljava/util/concurrent/RejectedExecutionHandler;
    Signature: (IIILjava/util/concurrent/BlockingQueue<Ljava/lang/Runnable;>;Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)Ljava/util/concurrent/ThreadPoolExecutor;
    MethodParameters:
                          Name  Flags
      corePoolSize              
      maxPoolSize               
      keepAliveSeconds          
      queue                     
      threadFactory             
      rejectedExecutionHandler  

  protected java.util.concurrent.BlockingQueue<java.lang.Runnable> createQueue(int);
    descriptor: (I)Ljava/util/concurrent/BlockingQueue;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
        start local 1 // int queueCapacity
         0: .line 195
            iload 1 /* queueCapacity */
            ifle 2
         1: .line 196
            new java.util.concurrent.LinkedBlockingQueue
            dup
            iload 1 /* queueCapacity */
            invokespecial java.util.concurrent.LinkedBlockingQueue.<init>:(I)V
            areturn
         2: .line 199
      StackMap locals:
      StackMap stack:
            new java.util.concurrent.SynchronousQueue
            dup
            invokespecial java.util.concurrent.SynchronousQueue.<init>:()V
            areturn
        end local 1 // int queueCapacity
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    3     0           this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
            0    3     1  queueCapacity  I
    Signature: (I)Ljava/util/concurrent/BlockingQueue<Ljava/lang/Runnable;>;
    MethodParameters:
               Name  Flags
      queueCapacity  

  public java.util.concurrent.ExecutorService getObject();
    descriptor: ()Ljava/util/concurrent/ExecutorService;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
         0: .line 207
            aload 0 /* this */
            getfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.exposedExecutor:Ljava/util/concurrent/ExecutorService;
            areturn
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public java.lang.Class<? extends java.util.concurrent.ExecutorService> getObjectType();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
         0: .line 212
            aload 0 /* this */
            getfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.exposedExecutor:Ljava/util/concurrent/ExecutorService;
            ifnull 1
            aload 0 /* this */
            getfield org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.exposedExecutor:Ljava/util/concurrent/ExecutorService;
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            goto 2
      StackMap locals:
      StackMap stack:
         1: ldc Ljava/util/concurrent/ExecutorService;
      StackMap locals:
      StackMap stack: java.lang.Class
         2: areturn
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;
    Signature: ()Ljava/lang/Class<+Ljava/util/concurrent/ExecutorService;>;

  public boolean isSingleton();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
         0: .line 217
            iconst_1
            ireturn
        end local 0 // org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/scheduling/concurrent/ThreadPoolExecutorFactoryBean;

  public java.lang.Object getObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual org.springframework.scheduling.concurrent.ThreadPoolExecutorFactoryBean.getObject:()Ljava/util/concurrent/ExecutorService;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.Exception
}
Signature: Lorg/springframework/scheduling/concurrent/ExecutorConfigurationSupport;Lorg/springframework/beans/factory/FactoryBean<Ljava/util/concurrent/ExecutorService;>;Lorg/springframework/beans/factory/InitializingBean;Lorg/springframework/beans/factory/DisposableBean;
SourceFile: "ThreadPoolExecutorFactoryBean.java"