public class org.glassfish.grizzly.threadpool.DefaultWorkerThread extends java.lang.Thread implements org.glassfish.grizzly.threadpool.WorkerThread
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.glassfish.grizzly.threadpool.DefaultWorkerThread
  super_class: java.lang.Thread
{
  private final org.glassfish.grizzly.attributes.AttributeHolder attributes;
    descriptor: Lorg/glassfish/grizzly/attributes/AttributeHolder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.glassfish.grizzly.memory.ThreadLocalPool memoryPool;
    descriptor: Lorg/glassfish/grizzly/memory/ThreadLocalPool;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.glassfish.grizzly.ThreadCache$ObjectCache objectCache;
    descriptor: Lorg/glassfish/grizzly/ThreadCache$ObjectCache;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private long transactionTimeoutMillis;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  public void <init>(org.glassfish.grizzly.attributes.AttributeBuilder, java.lang.String, org.glassfish.grizzly.memory.ThreadLocalPool, java.lang.Runnable);
    descriptor: (Lorg/glassfish/grizzly/attributes/AttributeBuilder;Ljava/lang/String;Lorg/glassfish/grizzly/memory/ThreadLocalPool;Ljava/lang/Runnable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
        start local 1 // org.glassfish.grizzly.attributes.AttributeBuilder attrBuilder
        start local 2 // java.lang.String name
        start local 3 // org.glassfish.grizzly.memory.ThreadLocalPool pool
        start local 4 // java.lang.Runnable runTask
         0: .line 43
            aload 0 /* this */
            aload 4 /* runTask */
            aload 2 /* name */
            invokespecial java.lang.Thread.<init>:(Ljava/lang/Runnable;Ljava/lang/String;)V
         1: .line 38
            aload 0 /* this */
            new org.glassfish.grizzly.ThreadCache$ObjectCache
            dup
            invokespecial org.glassfish.grizzly.ThreadCache$ObjectCache.<init>:()V
            putfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.objectCache:Lorg/glassfish/grizzly/ThreadCache$ObjectCache;
         2: .line 40
            aload 0 /* this */
            ldc -1
            putfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.transactionTimeoutMillis:J
         3: .line 44
            aload 0 /* this */
            aload 1 /* attrBuilder */
            invokeinterface org.glassfish.grizzly.attributes.AttributeBuilder.createUnsafeAttributeHolder:()Lorg/glassfish/grizzly/attributes/AttributeHolder;
            putfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.attributes:Lorg/glassfish/grizzly/attributes/AttributeHolder;
         4: .line 45
            aload 0 /* this */
            aload 3 /* pool */
            putfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.memoryPool:Lorg/glassfish/grizzly/memory/ThreadLocalPool;
         5: .line 47
            return
        end local 4 // java.lang.Runnable runTask
        end local 3 // org.glassfish.grizzly.memory.ThreadLocalPool pool
        end local 2 // java.lang.String name
        end local 1 // org.glassfish.grizzly.attributes.AttributeBuilder attrBuilder
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;
            0    6     1  attrBuilder  Lorg/glassfish/grizzly/attributes/AttributeBuilder;
            0    6     2         name  Ljava/lang/String;
            0    6     3         pool  Lorg/glassfish/grizzly/memory/ThreadLocalPool;
            0    6     4      runTask  Ljava/lang/Runnable;
    MethodParameters:
             Name  Flags
      attrBuilder  
      name         
      pool         
      runTask      

  public java.lang.Thread getThread();
    descriptor: ()Ljava/lang/Thread;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
         0: .line 51
            aload 0 /* this */
            areturn
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;

  public org.glassfish.grizzly.attributes.AttributeHolder getAttributes();
    descriptor: ()Lorg/glassfish/grizzly/attributes/AttributeHolder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
         0: .line 56
            aload 0 /* this */
            getfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.attributes:Lorg/glassfish/grizzly/attributes/AttributeHolder;
            areturn
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;

  public org.glassfish.grizzly.memory.ThreadLocalPool getMemoryPool();
    descriptor: ()Lorg/glassfish/grizzly/memory/ThreadLocalPool;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
         0: .line 60
            aload 0 /* this */
            getfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.memoryPool:Lorg/glassfish/grizzly/memory/ThreadLocalPool;
            areturn
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;

  public final <E> E getFromCache(org.glassfish.grizzly.ThreadCache$CachedTypeIndex<E>);
    descriptor: (Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
        start local 1 // org.glassfish.grizzly.ThreadCache$CachedTypeIndex index
         0: .line 72
            aload 0 /* this */
            getfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.objectCache:Lorg/glassfish/grizzly/ThreadCache$ObjectCache;
            aload 1 /* index */
            invokevirtual org.glassfish.grizzly.ThreadCache$ObjectCache.get:(Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;)Ljava/lang/Object;
            areturn
        end local 1 // org.glassfish.grizzly.ThreadCache$CachedTypeIndex index
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;
            0    1     1  index  Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex<TE;>;
    Signature: <E:Ljava/lang/Object;>(Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex<TE;>;)TE;
    MethodParameters:
       Name  Flags
      index  final

  public final <E> E takeFromCache(org.glassfish.grizzly.ThreadCache$CachedTypeIndex<E>);
    descriptor: (Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;)Ljava/lang/Object;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
        start local 1 // org.glassfish.grizzly.ThreadCache$CachedTypeIndex index
         0: .line 84
            aload 0 /* this */
            getfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.objectCache:Lorg/glassfish/grizzly/ThreadCache$ObjectCache;
            aload 1 /* index */
            invokevirtual org.glassfish.grizzly.ThreadCache$ObjectCache.take:(Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;)Ljava/lang/Object;
            areturn
        end local 1 // org.glassfish.grizzly.ThreadCache$CachedTypeIndex index
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;
            0    1     1  index  Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex<TE;>;
    Signature: <E:Ljava/lang/Object;>(Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex<TE;>;)TE;
    MethodParameters:
       Name  Flags
      index  final

  public final <E> boolean putToCache(org.glassfish.grizzly.ThreadCache$CachedTypeIndex<E>, );
    descriptor: (Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
        start local 1 // org.glassfish.grizzly.ThreadCache$CachedTypeIndex index
        start local 2 // java.lang.Object o
         0: .line 88
            aload 0 /* this */
            getfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.objectCache:Lorg/glassfish/grizzly/ThreadCache$ObjectCache;
            aload 1 /* index */
            aload 2 /* o */
            invokevirtual org.glassfish.grizzly.ThreadCache$ObjectCache.put:(Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex;Ljava/lang/Object;)Z
            ireturn
        end local 2 // java.lang.Object o
        end local 1 // org.glassfish.grizzly.ThreadCache$CachedTypeIndex index
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;
            0    1     1  index  Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex<TE;>;
            0    1     2      o  TE;
    Signature: <E:Ljava/lang/Object;>(Lorg/glassfish/grizzly/ThreadCache$CachedTypeIndex<TE;>;TE;)Z
    MethodParameters:
       Name  Flags
      index  final
      o      final

  public long getTransactionTimeout(java.util.concurrent.TimeUnit);
    descriptor: (Ljava/util/concurrent/TimeUnit;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
        start local 1 // java.util.concurrent.TimeUnit timeunit
         0: .line 93
            aload 1 /* timeunit */
            aload 0 /* this */
            getfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.transactionTimeoutMillis:J
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
            lreturn
        end local 1 // java.util.concurrent.TimeUnit timeunit
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;
            0    1     1  timeunit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
          Name  Flags
      timeunit  

  public void setTransactionTimeout(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit timeunit
         0: .line 98
            aload 0 /* this */
            getstatic java.util.concurrent.TimeUnit.MILLISECONDS:Ljava/util/concurrent/TimeUnit;
            lload 1 /* timeout */
            aload 3 /* timeunit */
            invokevirtual java.util.concurrent.TimeUnit.convert:(JLjava/util/concurrent/TimeUnit;)J
            putfield org.glassfish.grizzly.threadpool.DefaultWorkerThread.transactionTimeoutMillis:J
         1: .line 99
            return
        end local 3 // java.util.concurrent.TimeUnit timeunit
        end local 1 // long timeout
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;
            0    2     1   timeout  J
            0    2     3  timeunit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
          Name  Flags
      timeout   
      timeunit  

  public void destroy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
         0: .line 103
            return
        end local 0 // org.glassfish.grizzly.threadpool.DefaultWorkerThread this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/grizzly/threadpool/DefaultWorkerThread;
}
SourceFile: "DefaultWorkerThread.java"
InnerClasses:
  public final CachedTypeIndex = org.glassfish.grizzly.ThreadCache$CachedTypeIndex of org.glassfish.grizzly.ThreadCache
  public final ObjectCache = org.glassfish.grizzly.ThreadCache$ObjectCache of org.glassfish.grizzly.ThreadCache