public class org.glassfish.jersey.spi.ThreadPoolExecutorProvider extends org.glassfish.jersey.spi.AbstractThreadPoolProvider<java.util.concurrent.ThreadPoolExecutor> implements org.glassfish.jersey.spi.ExecutorServiceProvider
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.jersey.spi.ThreadPoolExecutorProvider
  super_class: org.glassfish.jersey.spi.AbstractThreadPoolProvider
{
  private static final long CACHED_POOL_KEEP_ALIVE_DEFAULT_TIMEOUT;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 60

  public void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
        start local 1 // java.lang.String name
         0: .line 61
            aload 0 /* this */
            aload 1 /* name */
            invokespecial org.glassfish.jersey.spi.AbstractThreadPoolProvider.<init>:(Ljava/lang/String;)V
         1: .line 62
            return
        end local 1 // java.lang.String name
        end local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/jersey/spi/ThreadPoolExecutorProvider;
            0    2     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  final

  public java.util.concurrent.ExecutorService getExecutorService();
    descriptor: ()Ljava/util/concurrent/ExecutorService;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
         0: .line 66
            aload 0 /* this */
            invokespecial org.glassfish.jersey.spi.AbstractThreadPoolProvider.getExecutor:()Ljava/util/concurrent/ThreadPoolExecutor;
            areturn
        end local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/jersey/spi/ThreadPoolExecutorProvider;

  protected final java.util.concurrent.ThreadPoolExecutor createExecutor(int, java.util.concurrent.ThreadFactory, java.util.concurrent.RejectedExecutionHandler);
    descriptor: (ILjava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)Ljava/util/concurrent/ThreadPoolExecutor;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=8, locals=4, args_size=4
        start local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
        start local 1 // int corePoolSize
        start local 2 // java.util.concurrent.ThreadFactory threadFactory
        start local 3 // java.util.concurrent.RejectedExecutionHandler handler
         0: .line 72
            aload 0 /* this */
         1: .line 73
            iload 1 /* corePoolSize */
         2: .line 74
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.spi.ThreadPoolExecutorProvider.getMaximumPoolSize:()I
         3: .line 75
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.spi.ThreadPoolExecutorProvider.getKeepAliveTime:()J
         4: .line 76
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.spi.ThreadPoolExecutorProvider.getWorkQueue:()Ljava/util/concurrent/BlockingQueue;
         5: .line 77
            aload 2 /* threadFactory */
         6: .line 78
            aload 3 /* handler */
         7: .line 72
            invokevirtual org.glassfish.jersey.spi.ThreadPoolExecutorProvider.createExecutor:(IIJLjava/util/concurrent/BlockingQueue;Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)Ljava/util/concurrent/ThreadPoolExecutor;
            areturn
        end local 3 // java.util.concurrent.RejectedExecutionHandler handler
        end local 2 // java.util.concurrent.ThreadFactory threadFactory
        end local 1 // int corePoolSize
        end local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Lorg/glassfish/jersey/spi/ThreadPoolExecutorProvider;
            0    8     1   corePoolSize  I
            0    8     2  threadFactory  Ljava/util/concurrent/ThreadFactory;
            0    8     3        handler  Ljava/util/concurrent/RejectedExecutionHandler;
    MethodParameters:
               Name  Flags
      corePoolSize   final
      threadFactory  final
      handler        final

  protected java.util.concurrent.ThreadPoolExecutor createExecutor(int, int, long, java.util.concurrent.BlockingQueue<java.lang.Runnable>, java.util.concurrent.ThreadFactory, java.util.concurrent.RejectedExecutionHandler);
    descriptor: (IIJLjava/util/concurrent/BlockingQueue;Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)Ljava/util/concurrent/ThreadPoolExecutor;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=10, locals=8, args_size=7
        start local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
        start local 1 // int corePoolSize
        start local 2 // int maximumPoolSize
        start local 3 // long keepAliveTime
        start local 5 // java.util.concurrent.BlockingQueue workQueue
        start local 6 // java.util.concurrent.ThreadFactory threadFactory
        start local 7 // java.util.concurrent.RejectedExecutionHandler handler
         0: .line 109
            new java.util.concurrent.ThreadPoolExecutor
            dup
         1: .line 110
            iload 1 /* corePoolSize */
         2: .line 111
            iload 2 /* maximumPoolSize */
         3: .line 112
            lload 3 /* keepAliveTime */
         4: .line 113
            getstatic java.util.concurrent.TimeUnit.SECONDS:Ljava/util/concurrent/TimeUnit;
         5: .line 114
            aload 5 /* workQueue */
         6: .line 115
            aload 6 /* threadFactory */
         7: .line 116
            aload 7 /* handler */
         8: .line 109
            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 7 // java.util.concurrent.RejectedExecutionHandler handler
        end local 6 // java.util.concurrent.ThreadFactory threadFactory
        end local 5 // java.util.concurrent.BlockingQueue workQueue
        end local 3 // long keepAliveTime
        end local 2 // int maximumPoolSize
        end local 1 // int corePoolSize
        end local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    9     0             this  Lorg/glassfish/jersey/spi/ThreadPoolExecutorProvider;
            0    9     1     corePoolSize  I
            0    9     2  maximumPoolSize  I
            0    9     3    keepAliveTime  J
            0    9     5        workQueue  Ljava/util/concurrent/BlockingQueue<Ljava/lang/Runnable;>;
            0    9     6    threadFactory  Ljava/util/concurrent/ThreadFactory;
            0    9     7          handler  Ljava/util/concurrent/RejectedExecutionHandler;
    Signature: (IIJLjava/util/concurrent/BlockingQueue<Ljava/lang/Runnable;>;Ljava/util/concurrent/ThreadFactory;Ljava/util/concurrent/RejectedExecutionHandler;)Ljava/util/concurrent/ThreadPoolExecutor;
    MethodParameters:
                 Name  Flags
      corePoolSize     final
      maximumPoolSize  final
      keepAliveTime    final
      workQueue        final
      threadFactory    final
      handler          final

  protected int getMaximumPoolSize();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
         0: .line 134
            ldc 2147483647
            ireturn
        end local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/jersey/spi/ThreadPoolExecutorProvider;

  protected long getKeepAliveTime();
    descriptor: ()J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
         0: .line 165
            ldc 60
            lreturn
        end local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/jersey/spi/ThreadPoolExecutorProvider;

  protected java.util.concurrent.BlockingQueue<java.lang.Runnable> getWorkQueue();
    descriptor: ()Ljava/util/concurrent/BlockingQueue;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
         0: .line 196
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.spi.ThreadPoolExecutorProvider.getMaximumPoolSize:()I
            ldc 2147483647
            if_icmpne 2
         1: .line 197
            new java.util.concurrent.SynchronousQueue
            dup
            invokespecial java.util.concurrent.SynchronousQueue.<init>:()V
            goto 3
      StackMap locals:
      StackMap stack:
         2: new java.util.concurrent.LinkedBlockingQueue
            dup
            invokespecial java.util.concurrent.LinkedBlockingQueue.<init>:()V
         3: .line 196
      StackMap locals:
      StackMap stack: java.util.AbstractQueue
            areturn
        end local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/glassfish/jersey/spi/ThreadPoolExecutorProvider;
    Signature: ()Ljava/util/concurrent/BlockingQueue<Ljava/lang/Runnable;>;

  public void dispose(java.util.concurrent.ExecutorService);
    descriptor: (Ljava/util/concurrent/ExecutorService;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
        start local 1 // java.util.concurrent.ExecutorService executorService
         0: .line 203
            return
        end local 1 // java.util.concurrent.ExecutorService executorService
        end local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/glassfish/jersey/spi/ThreadPoolExecutorProvider;
            0    1     1  executorService  Ljava/util/concurrent/ExecutorService;
    MethodParameters:
                 Name  Flags
      executorService  final

  public void preDestroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
         0: .line 213
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.spi.ThreadPoolExecutorProvider.close:()V
         1: .line 214
            return
        end local 0 // org.glassfish.jersey.spi.ThreadPoolExecutorProvider this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/jersey/spi/ThreadPoolExecutorProvider;
    RuntimeVisibleAnnotations: 
      javax.annotation.PreDestroy()
}
Signature: Lorg/glassfish/jersey/spi/AbstractThreadPoolProvider<Ljava/util/concurrent/ThreadPoolExecutor;>;Lorg/glassfish/jersey/spi/ExecutorServiceProvider;
SourceFile: "ThreadPoolExecutorProvider.java"