public final class org.xnio.ByteBufferSlicePool implements org.xnio.Pool<java.nio.ByteBuffer>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.xnio.ByteBufferSlicePool
  super_class: java.lang.Object
{
  private static final int LOCAL_LENGTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.util.Set<org.xnio.ByteBufferSlicePool$Ref> refSet;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Lorg/xnio/ByteBufferSlicePool$Ref;>;

  private final java.util.Queue<org.xnio.ByteBufferSlicePool$Slice> sliceQueue;
    descriptor: Ljava/util/Queue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Queue<Lorg/xnio/ByteBufferSlicePool$Slice;>;

  private final org.xnio.BufferAllocator<java.nio.ByteBuffer> allocator;
    descriptor: Lorg/xnio/BufferAllocator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/xnio/BufferAllocator<Ljava/nio/ByteBuffer;>;

  private final int bufferSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int buffersPerRegion;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int threadLocalQueueSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.ThreadLocal<org.xnio.ByteBufferSlicePool$ThreadLocalCache> localQueueHolder;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/ThreadLocal<Lorg/xnio/ByteBufferSlicePool$ThreadLocalCache;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=0
         0: .line 46
            new org.xnio.ReadPropertyAction
            dup
            ldc "xnio.bufferpool.threadlocal.size"
            ldc "12"
            invokespecial org.xnio.ReadPropertyAction.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            invokestatic java.security.AccessController.doPrivileged:(Ljava/security/PrivilegedAction;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 0 /* value */
        start local 0 // java.lang.String value
         1: .line 49
            aload 0 /* value */
            invokestatic java.lang.Integer.parseInt:(Ljava/lang/String;)I
            istore 1 /* val */
        start local 1 // int val
         2: .line 50
            goto 5
        end local 1 // int val
      StackMap locals: java.lang.String
      StackMap stack: java.lang.NumberFormatException
         3: pop
         4: .line 51
            bipush 12
            istore 1 /* val */
        start local 1 // int val
         5: .line 53
      StackMap locals: int
      StackMap stack:
            iload 1 /* val */
            putstatic org.xnio.ByteBufferSlicePool.LOCAL_LENGTH:I
        end local 1 // int val
        end local 0 // java.lang.String value
         6: .line 54
            return
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            1    6     0  value  Ljava/lang/String;
            2    3     1    val  I
            5    6     1    val  I
      Exception table:
        from    to  target  type
           1     2       3  Class java.lang.NumberFormatException

  public void <init>(org.xnio.BufferAllocator<java.nio.ByteBuffer>, int, int, );
    descriptor: (Lorg/xnio/BufferAllocator;III)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // org.xnio.ByteBufferSlicePool this
        start local 1 // org.xnio.BufferAllocator allocator
        start local 2 // int bufferSize
        start local 3 // int maxRegionSize
        start local 4 // int threadLocalQueueSize
         0: .line 87
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 56
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            invokestatic java.util.Collections.synchronizedSet:(Ljava/util/Set;)Ljava/util/Set;
            putfield org.xnio.ByteBufferSlicePool.refSet:Ljava/util/Set;
         2: .line 62
            aload 0 /* this */
            new org.xnio.ByteBufferSlicePool$1
            dup
            aload 0 /* this */
            invokespecial org.xnio.ByteBufferSlicePool$1.<init>:(Lorg/xnio/ByteBufferSlicePool;)V
            putfield org.xnio.ByteBufferSlicePool.localQueueHolder:Ljava/lang/ThreadLocal;
         3: .line 88
            iload 2 /* bufferSize */
            ifgt 5
         4: .line 89
            getstatic org.xnio._private.Messages.msg:Lorg/xnio/_private/Messages;
            ldc "bufferSize"
            invokeinterface org.xnio._private.Messages.parameterOutOfRange:(Ljava/lang/String;)Ljava/lang/IllegalArgumentException;
            athrow
         5: .line 91
      StackMap locals: org.xnio.ByteBufferSlicePool org.xnio.BufferAllocator int int int
      StackMap stack:
            iload 3 /* maxRegionSize */
            iload 2 /* bufferSize */
            if_icmpge 7
         6: .line 92
            getstatic org.xnio._private.Messages.msg:Lorg/xnio/_private/Messages;
            ldc "bufferSize"
            invokeinterface org.xnio._private.Messages.parameterOutOfRange:(Ljava/lang/String;)Ljava/lang/IllegalArgumentException;
            athrow
         7: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* maxRegionSize */
            iload 2 /* bufferSize */
            idiv
            putfield org.xnio.ByteBufferSlicePool.buffersPerRegion:I
         8: .line 95
            aload 0 /* this */
            iload 2 /* bufferSize */
            putfield org.xnio.ByteBufferSlicePool.bufferSize:I
         9: .line 96
            aload 0 /* this */
            aload 1 /* allocator */
            putfield org.xnio.ByteBufferSlicePool.allocator:Lorg/xnio/BufferAllocator;
        10: .line 97
            aload 0 /* this */
            new java.util.concurrent.ConcurrentLinkedQueue
            dup
            invokespecial java.util.concurrent.ConcurrentLinkedQueue.<init>:()V
            putfield org.xnio.ByteBufferSlicePool.sliceQueue:Ljava/util/Queue;
        11: .line 98
            aload 0 /* this */
            iload 4 /* threadLocalQueueSize */
            putfield org.xnio.ByteBufferSlicePool.threadLocalQueueSize:I
        12: .line 99
            return
        end local 4 // int threadLocalQueueSize
        end local 3 // int maxRegionSize
        end local 2 // int bufferSize
        end local 1 // org.xnio.BufferAllocator allocator
        end local 0 // org.xnio.ByteBufferSlicePool this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   13     0                  this  Lorg/xnio/ByteBufferSlicePool;
            0   13     1             allocator  Lorg/xnio/BufferAllocator<Ljava/nio/ByteBuffer;>;
            0   13     2            bufferSize  I
            0   13     3         maxRegionSize  I
            0   13     4  threadLocalQueueSize  I
    Signature: (Lorg/xnio/BufferAllocator<Ljava/nio/ByteBuffer;>;III)V
    MethodParameters:
                      Name  Flags
      allocator             final
      bufferSize            final
      maxRegionSize         final
      threadLocalQueueSize  final

  public void <init>(org.xnio.BufferAllocator<java.nio.ByteBuffer>, int, );
    descriptor: (Lorg/xnio/BufferAllocator;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.xnio.ByteBufferSlicePool this
        start local 1 // org.xnio.BufferAllocator allocator
        start local 2 // int bufferSize
        start local 3 // int maxRegionSize
         0: .line 109
            aload 0 /* this */
            aload 1 /* allocator */
            iload 2 /* bufferSize */
            iload 3 /* maxRegionSize */
            getstatic org.xnio.ByteBufferSlicePool.LOCAL_LENGTH:I
            invokespecial org.xnio.ByteBufferSlicePool.<init>:(Lorg/xnio/BufferAllocator;III)V
         1: .line 110
            return
        end local 3 // int maxRegionSize
        end local 2 // int bufferSize
        end local 1 // org.xnio.BufferAllocator allocator
        end local 0 // org.xnio.ByteBufferSlicePool this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/xnio/ByteBufferSlicePool;
            0    2     1      allocator  Lorg/xnio/BufferAllocator<Ljava/nio/ByteBuffer;>;
            0    2     2     bufferSize  I
            0    2     3  maxRegionSize  I
    Signature: (Lorg/xnio/BufferAllocator<Ljava/nio/ByteBuffer;>;II)V
    MethodParameters:
               Name  Flags
      allocator      final
      bufferSize     final
      maxRegionSize  final

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.xnio.ByteBufferSlicePool this
        start local 1 // int bufferSize
        start local 2 // int maxRegionSize
         0: .line 119
            aload 0 /* this */
            getstatic org.xnio.BufferAllocator.DIRECT_BYTE_BUFFER_ALLOCATOR:Lorg/xnio/BufferAllocator;
            iload 1 /* bufferSize */
            iload 2 /* maxRegionSize */
            invokespecial org.xnio.ByteBufferSlicePool.<init>:(Lorg/xnio/BufferAllocator;II)V
         1: .line 120
            return
        end local 2 // int maxRegionSize
        end local 1 // int bufferSize
        end local 0 // org.xnio.ByteBufferSlicePool this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lorg/xnio/ByteBufferSlicePool;
            0    2     1     bufferSize  I
            0    2     2  maxRegionSize  I
    MethodParameters:
               Name  Flags
      bufferSize     final
      maxRegionSize  final

  public org.xnio.Pooled<java.nio.ByteBuffer> allocate();
    descriptor: ()Lorg/xnio/Pooled;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=1
        start local 0 // org.xnio.ByteBufferSlicePool this
         0: .line 125
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.threadLocalQueueSize:I
            ifle 7
         1: .line 126
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.localQueueHolder:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast org.xnio.ByteBufferSlicePool$ThreadLocalCache
            astore 2 /* localCache */
        start local 2 // org.xnio.ByteBufferSlicePool$ThreadLocalCache localCache
         2: .line 127
            aload 2 /* localCache */
            getfield org.xnio.ByteBufferSlicePool$ThreadLocalCache.outstanding:I
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.threadLocalQueueSize:I
            if_icmpeq 4
         3: .line 128
            aload 2 /* localCache */
            dup
            getfield org.xnio.ByteBufferSlicePool$ThreadLocalCache.outstanding:I
            iconst_1
            iadd
            putfield org.xnio.ByteBufferSlicePool$ThreadLocalCache.outstanding:I
         4: .line 130
      StackMap locals: org.xnio.ByteBufferSlicePool top org.xnio.ByteBufferSlicePool$ThreadLocalCache
      StackMap stack:
            aload 2 /* localCache */
            getfield org.xnio.ByteBufferSlicePool$ThreadLocalCache.queue:Ljava/util/ArrayDeque;
            invokevirtual java.util.ArrayDeque.poll:()Ljava/lang/Object;
            checkcast org.xnio.ByteBufferSlicePool$Slice
            astore 1 /* slice */
        start local 1 // org.xnio.ByteBufferSlicePool$Slice slice
         5: .line 131
            aload 1 /* slice */
            ifnull 7
         6: .line 132
            new org.xnio.ByteBufferSlicePool$PooledByteBuffer
            dup
            aload 0 /* this */
            aload 1 /* slice */
            aload 1 /* slice */
            invokevirtual org.xnio.ByteBufferSlicePool$Slice.slice:()Ljava/nio/ByteBuffer;
            invokespecial org.xnio.ByteBufferSlicePool$PooledByteBuffer.<init>:(Lorg/xnio/ByteBufferSlicePool;Lorg/xnio/ByteBufferSlicePool$Slice;Ljava/nio/ByteBuffer;)V
            areturn
        end local 2 // org.xnio.ByteBufferSlicePool$ThreadLocalCache localCache
        end local 1 // org.xnio.ByteBufferSlicePool$Slice slice
         7: .line 135
      StackMap locals: org.xnio.ByteBufferSlicePool
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.sliceQueue:Ljava/util/Queue;
            astore 2 /* sliceQueue */
        start local 2 // java.util.Queue sliceQueue
         8: .line 136
            aload 2 /* sliceQueue */
            invokeinterface java.util.Queue.poll:()Ljava/lang/Object;
            checkcast org.xnio.ByteBufferSlicePool$Slice
            astore 1 /* slice */
        start local 1 // org.xnio.ByteBufferSlicePool$Slice slice
         9: .line 137
            aload 1 /* slice */
            ifnull 11
        10: .line 138
            new org.xnio.ByteBufferSlicePool$PooledByteBuffer
            dup
            aload 0 /* this */
            aload 1 /* slice */
            aload 1 /* slice */
            invokevirtual org.xnio.ByteBufferSlicePool$Slice.slice:()Ljava/nio/ByteBuffer;
            invokespecial org.xnio.ByteBufferSlicePool$PooledByteBuffer.<init>:(Lorg/xnio/ByteBufferSlicePool;Lorg/xnio/ByteBufferSlicePool$Slice;Ljava/nio/ByteBuffer;)V
            areturn
        11: .line 140
      StackMap locals: org.xnio.ByteBufferSlicePool$Slice java.util.Queue
      StackMap stack:
            aload 2 /* sliceQueue */
            dup
            astore 3
            monitorenter
        12: .line 141
            aload 2 /* sliceQueue */
            invokeinterface java.util.Queue.poll:()Ljava/lang/Object;
            checkcast org.xnio.ByteBufferSlicePool$Slice
            astore 1 /* slice */
        13: .line 142
            aload 1 /* slice */
            ifnull 16
        14: .line 143
            new org.xnio.ByteBufferSlicePool$PooledByteBuffer
            dup
            aload 0 /* this */
            aload 1 /* slice */
            aload 1 /* slice */
            invokevirtual org.xnio.ByteBufferSlicePool$Slice.slice:()Ljava/nio/ByteBuffer;
            invokespecial org.xnio.ByteBufferSlicePool$PooledByteBuffer.<init>:(Lorg/xnio/ByteBufferSlicePool;Lorg/xnio/ByteBufferSlicePool$Slice;Ljava/nio/ByteBuffer;)V
            aload 3
            monitorexit
        15: areturn
        16: .line 145
      StackMap locals: java.util.Queue
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.bufferSize:I
            istore 4 /* bufferSize */
        start local 4 // int bufferSize
        17: .line 146
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.buffersPerRegion:I
            istore 5 /* buffersPerRegion */
        start local 5 // int buffersPerRegion
        18: .line 147
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.allocator:Lorg/xnio/BufferAllocator;
            iload 5 /* buffersPerRegion */
            iload 4 /* bufferSize */
            imul
            invokeinterface org.xnio.BufferAllocator.allocate:(I)Ljava/nio/Buffer;
            checkcast java.nio.ByteBuffer
            astore 6 /* region */
        start local 6 // java.nio.ByteBuffer region
        19: .line 148
            iload 4 /* bufferSize */
            istore 7 /* idx */
        start local 7 // int idx
        20: .line 149
            iconst_1
            istore 8 /* i */
        start local 8 // int i
        21: goto 25
        22: .line 150
      StackMap locals: org.xnio.ByteBufferSlicePool org.xnio.ByteBufferSlicePool$Slice java.util.Queue java.util.Queue int int java.nio.ByteBuffer int int
      StackMap stack:
            aload 2 /* sliceQueue */
            new org.xnio.ByteBufferSlicePool$Slice
            dup
            aload 0 /* this */
            aload 6 /* region */
            iload 7 /* idx */
            iload 4 /* bufferSize */
            invokespecial org.xnio.ByteBufferSlicePool$Slice.<init>:(Lorg/xnio/ByteBufferSlicePool;Ljava/nio/ByteBuffer;II)V
            invokeinterface java.util.Queue.add:(Ljava/lang/Object;)Z
            pop
        23: .line 151
            iload 7 /* idx */
            iload 4 /* bufferSize */
            iadd
            istore 7 /* idx */
        24: .line 149
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        25: iload 8 /* i */
            iload 5 /* buffersPerRegion */
            if_icmplt 22
        end local 8 // int i
        26: .line 153
            new org.xnio.ByteBufferSlicePool$Slice
            dup
            aload 0 /* this */
            aload 6 /* region */
            iconst_0
            iload 4 /* bufferSize */
            invokespecial org.xnio.ByteBufferSlicePool$Slice.<init>:(Lorg/xnio/ByteBufferSlicePool;Ljava/nio/ByteBuffer;II)V
            astore 8 /* newSlice */
        start local 8 // org.xnio.ByteBufferSlicePool$Slice newSlice
        27: .line 154
            new org.xnio.ByteBufferSlicePool$PooledByteBuffer
            dup
            aload 0 /* this */
            aload 8 /* newSlice */
            aload 8 /* newSlice */
            invokevirtual org.xnio.ByteBufferSlicePool$Slice.slice:()Ljava/nio/ByteBuffer;
            invokespecial org.xnio.ByteBufferSlicePool$PooledByteBuffer.<init>:(Lorg/xnio/ByteBufferSlicePool;Lorg/xnio/ByteBufferSlicePool$Slice;Ljava/nio/ByteBuffer;)V
            aload 3
            monitorexit
        28: areturn
        end local 8 // org.xnio.ByteBufferSlicePool$Slice newSlice
        end local 7 // int idx
        end local 6 // java.nio.ByteBuffer region
        end local 5 // int buffersPerRegion
        end local 4 // int bufferSize
        29: .line 140
      StackMap locals: org.xnio.ByteBufferSlicePool org.xnio.ByteBufferSlicePool$Slice java.util.Queue java.util.Queue
      StackMap stack: java.lang.Throwable
            aload 3
            monitorexit
        30: athrow
        end local 2 // java.util.Queue sliceQueue
        end local 1 // org.xnio.ByteBufferSlicePool$Slice slice
        end local 0 // org.xnio.ByteBufferSlicePool this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   31     0              this  Lorg/xnio/ByteBufferSlicePool;
            5    7     1             slice  Lorg/xnio/ByteBufferSlicePool$Slice;
            9   31     1             slice  Lorg/xnio/ByteBufferSlicePool$Slice;
            2    7     2        localCache  Lorg/xnio/ByteBufferSlicePool$ThreadLocalCache;
            8   31     2        sliceQueue  Ljava/util/Queue<Lorg/xnio/ByteBufferSlicePool$Slice;>;
           17   29     4        bufferSize  I
           18   29     5  buffersPerRegion  I
           19   29     6            region  Ljava/nio/ByteBuffer;
           20   29     7               idx  I
           21   26     8                 i  I
           27   29     8          newSlice  Lorg/xnio/ByteBufferSlicePool$Slice;
      Exception table:
        from    to  target  type
          12    15      29  any
          16    28      29  any
          29    30      29  any
    Signature: ()Lorg/xnio/Pooled<Ljava/nio/ByteBuffer;>;

  public int getBufferSize();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.ByteBufferSlicePool this
         0: .line 162
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.bufferSize:I
            ireturn
        end local 0 // org.xnio.ByteBufferSlicePool this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/ByteBufferSlicePool;

  private void doFree(org.xnio.ByteBufferSlicePool$Slice);
    descriptor: (Lorg/xnio/ByteBufferSlicePool$Slice;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.xnio.ByteBufferSlicePool this
        start local 1 // org.xnio.ByteBufferSlicePool$Slice region
         0: .line 166
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.threadLocalQueueSize:I
            ifle 12
         1: .line 167
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.localQueueHolder:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast org.xnio.ByteBufferSlicePool$ThreadLocalCache
            astore 2 /* localCache */
        start local 2 // org.xnio.ByteBufferSlicePool$ThreadLocalCache localCache
         2: .line 168
            iconst_0
            istore 3 /* cacheOk */
        start local 3 // boolean cacheOk
         3: .line 169
            aload 2 /* localCache */
            getfield org.xnio.ByteBufferSlicePool$ThreadLocalCache.outstanding:I
            ifle 6
         4: .line 170
            aload 2 /* localCache */
            dup
            getfield org.xnio.ByteBufferSlicePool$ThreadLocalCache.outstanding:I
            iconst_1
            isub
            putfield org.xnio.ByteBufferSlicePool$ThreadLocalCache.outstanding:I
         5: .line 171
            iconst_1
            istore 3 /* cacheOk */
         6: .line 173
      StackMap locals: org.xnio.ByteBufferSlicePool$ThreadLocalCache int
      StackMap stack:
            aload 2 /* localCache */
            getfield org.xnio.ByteBufferSlicePool$ThreadLocalCache.queue:Ljava/util/ArrayDeque;
            astore 4 /* localQueue */
        start local 4 // java.util.ArrayDeque localQueue
         7: .line 174
            aload 4 /* localQueue */
            invokevirtual java.util.ArrayDeque.size:()I
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.threadLocalQueueSize:I
            if_icmpeq 8
            iload 3 /* cacheOk */
            ifne 10
         8: .line 175
      StackMap locals: java.util.ArrayDeque
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.sliceQueue:Ljava/util/Queue;
            aload 1 /* region */
            invokeinterface java.util.Queue.add:(Ljava/lang/Object;)Z
            pop
         9: .line 176
            goto 13
        10: .line 177
      StackMap locals:
      StackMap stack:
            aload 4 /* localQueue */
            aload 1 /* region */
            invokevirtual java.util.ArrayDeque.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // java.util.ArrayDeque localQueue
        end local 3 // boolean cacheOk
        end local 2 // org.xnio.ByteBufferSlicePool$ThreadLocalCache localCache
        11: .line 179
            goto 13
        12: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.ByteBufferSlicePool.sliceQueue:Ljava/util/Queue;
            aload 1 /* region */
            invokeinterface java.util.Queue.add:(Ljava/lang/Object;)Z
            pop
        13: .line 182
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xnio.ByteBufferSlicePool$Slice region
        end local 0 // org.xnio.ByteBufferSlicePool this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   14     0        this  Lorg/xnio/ByteBufferSlicePool;
            0   14     1      region  Lorg/xnio/ByteBufferSlicePool$Slice;
            2   11     2  localCache  Lorg/xnio/ByteBufferSlicePool$ThreadLocalCache;
            3   11     3     cacheOk  Z
            7   11     4  localQueue  Ljava/util/ArrayDeque<Lorg/xnio/ByteBufferSlicePool$Slice;>;
    MethodParameters:
        Name  Flags
      region  
}
Signature: Ljava/lang/Object;Lorg/xnio/Pool<Ljava/nio/ByteBuffer;>;
SourceFile: "ByteBufferSlicePool.java"
NestMembers:
  org.xnio.ByteBufferSlicePool$1  org.xnio.ByteBufferSlicePool$PooledByteBuffer  org.xnio.ByteBufferSlicePool$Ref  org.xnio.ByteBufferSlicePool$Slice  org.xnio.ByteBufferSlicePool$ThreadLocalCache  org.xnio.ByteBufferSlicePool$ThreadLocalCache$1
InnerClasses:
  org.xnio.ByteBufferSlicePool$1
  private final PooledByteBuffer = org.xnio.ByteBufferSlicePool$PooledByteBuffer of org.xnio.ByteBufferSlicePool
  final Ref = org.xnio.ByteBufferSlicePool$Ref of org.xnio.ByteBufferSlicePool
  private final Slice = org.xnio.ByteBufferSlicePool$Slice of org.xnio.ByteBufferSlicePool
  private final ThreadLocalCache = org.xnio.ByteBufferSlicePool$ThreadLocalCache of org.xnio.ByteBufferSlicePool