final class org.xnio.nio.NioSocketConduit extends org.xnio.nio.NioHandle implements org.xnio.conduits.StreamSourceConduit, org.xnio.conduits.StreamSinkConduit
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.xnio.nio.NioSocketConduit
  super_class: org.xnio.nio.NioHandle
{
  private final java.nio.channels.SocketChannel socketChannel;
    descriptor: Ljava/nio/channels/SocketChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.xnio.nio.NioSocketStreamConnection connection;
    descriptor: Lorg/xnio/nio/NioSocketStreamConnection;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.xnio.conduits.ReadReadyHandler readReadyHandler;
    descriptor: Lorg/xnio/conduits/ReadReadyHandler;
    flags: (0x0002) ACC_PRIVATE

  private org.xnio.conduits.WriteReadyHandler writeReadyHandler;
    descriptor: Lorg/xnio/conduits/WriteReadyHandler;
    flags: (0x0002) ACC_PRIVATE

  private volatile int readTimeout;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

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

  private static final java.util.concurrent.atomic.AtomicIntegerFieldUpdater<org.xnio.nio.NioSocketConduit> readTimeoutUpdater;
    descriptor: Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater<Lorg/xnio/nio/NioSocketConduit;>;

  private volatile int writeTimeout;
    descriptor: I
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

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

  private static final java.util.concurrent.atomic.AtomicIntegerFieldUpdater<org.xnio.nio.NioSocketConduit> writeTimeoutUpdater;
    descriptor: Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater<Lorg/xnio/nio/NioSocketConduit;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 58
            ldc Lorg/xnio/nio/NioSocketConduit;
            ldc "readTimeout"
            invokestatic java.util.concurrent.atomic.AtomicIntegerFieldUpdater.newUpdater:(Ljava/lang/Class;Ljava/lang/String;)Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
            putstatic org.xnio.nio.NioSocketConduit.readTimeoutUpdater:Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
         1: .line 65
            ldc Lorg/xnio/nio/NioSocketConduit;
            ldc "writeTimeout"
            invokestatic java.util.concurrent.atomic.AtomicIntegerFieldUpdater.newUpdater:(Ljava/lang/Class;Ljava/lang/String;)Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
            putstatic org.xnio.nio.NioSocketConduit.writeTimeoutUpdater:Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(org.xnio.nio.WorkerThread, java.nio.channels.SelectionKey, org.xnio.nio.NioSocketStreamConnection);
    descriptor: (Lorg/xnio/nio/WorkerThread;Ljava/nio/channels/SelectionKey;Lorg/xnio/nio/NioSocketStreamConnection;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // org.xnio.nio.WorkerThread workerThread
        start local 2 // java.nio.channels.SelectionKey selectionKey
        start local 3 // org.xnio.nio.NioSocketStreamConnection connection
         0: .line 68
            aload 0 /* this */
            aload 1 /* workerThread */
            aload 2 /* selectionKey */
            invokespecial org.xnio.nio.NioHandle.<init>:(Lorg/xnio/nio/WorkerThread;Ljava/nio/channels/SelectionKey;)V
         1: .line 69
            aload 0 /* this */
            aload 3 /* connection */
            putfield org.xnio.nio.NioSocketConduit.connection:Lorg/xnio/nio/NioSocketStreamConnection;
         2: .line 70
            aload 0 /* this */
            aload 2 /* selectionKey */
            invokevirtual java.nio.channels.SelectionKey.channel:()Ljava/nio/channels/SelectableChannel;
            checkcast java.nio.channels.SocketChannel
            putfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
         3: .line 71
            return
        end local 3 // org.xnio.nio.NioSocketStreamConnection connection
        end local 2 // java.nio.channels.SelectionKey selectionKey
        end local 1 // org.xnio.nio.WorkerThread workerThread
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Lorg/xnio/nio/NioSocketConduit;
            0    4     1  workerThread  Lorg/xnio/nio/WorkerThread;
            0    4     2  selectionKey  Ljava/nio/channels/SelectionKey;
            0    4     3    connection  Lorg/xnio/nio/NioSocketStreamConnection;
    MethodParameters:
              Name  Flags
      workerThread  final
      selectionKey  final
      connection    final

  void handleReady(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // int ops
         0: .line 75
            iload 1 /* ops */
            ifne 8
         1: .line 77
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getSelectionKey:()Ljava/nio/channels/SelectionKey;
            astore 2 /* key */
        start local 2 // java.nio.channels.SelectionKey key
         2: .line 78
            aload 2 /* key */
            invokevirtual java.nio.channels.SelectionKey.interestOps:()I
            istore 3 /* interestOps */
        start local 3 // int interestOps
         3: .line 79
            iload 3 /* interestOps */
            ifeq 6
         4: .line 80
            iload 3 /* interestOps */
            istore 1 /* ops */
         5: .line 81
            goto 8
         6: .line 83
      StackMap locals: java.nio.channels.SelectionKey int
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.forceTermination:()V
         7: .line 84
            return
        end local 3 // int interestOps
        end local 2 // java.nio.channels.SelectionKey key
         8: .line 87
      StackMap locals:
      StackMap stack:
            iload 1 /* ops */
            iconst_1
            invokestatic org.xnio.Bits.allAreSet:(II)Z
            ifeq 13
         9: .line 88
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.isReadShutdown:()Z
            ifeq 10
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.suspendReads:()V
        10: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.readReadyHandler:Lorg/xnio/conduits/ReadReadyHandler;
            invokeinterface org.xnio.conduits.ReadReadyHandler.readReady:()V
        11: .line 90
            goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        12: pop
        13: .line 92
      StackMap locals:
      StackMap stack:
            iload 1 /* ops */
            iconst_4
            invokestatic org.xnio.Bits.allAreSet:(II)Z
            ifeq 20
        14: .line 93
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.isWriteShutdown:()Z
            ifeq 15
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.suspendWrites:()V
        15: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.writeReadyHandler:Lorg/xnio/conduits/WriteReadyHandler;
            invokeinterface org.xnio.conduits.WriteReadyHandler.writeReady:()V
        16: .line 95
            goto 20
      StackMap locals:
      StackMap stack: java.lang.Throwable
        17: pop
        18: .line 97
            goto 20
      StackMap locals:
      StackMap stack: java.nio.channels.CancelledKeyException
        19: pop
        20: .line 98
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int ops
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   21     0         this  Lorg/xnio/nio/NioSocketConduit;
            0   21     1          ops  I
            2    8     2          key  Ljava/nio/channels/SelectionKey;
            3    8     3  interestOps  I
      Exception table:
        from    to  target  type
           9    11      12  Class java.lang.Throwable
          14    16      17  Class java.lang.Throwable
           0     7      19  Class java.nio.channels.CancelledKeyException
           8    18      19  Class java.nio.channels.CancelledKeyException
    MethodParameters:
      Name  Flags
      ops   

  public org.xnio.XnioWorker getWorker();
    descriptor: ()Lorg/xnio/XnioWorker;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 101
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getWorkerThread:()Lorg/xnio/nio/WorkerThread;
            invokevirtual org.xnio.nio.WorkerThread.getWorker:()Lorg/xnio/nio/NioXnioWorker;
            areturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;

  void forceTermination();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 105
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.readReadyHandler:Lorg/xnio/conduits/ReadReadyHandler;
            astore 1 /* read */
        start local 1 // org.xnio.conduits.ReadReadyHandler read
         1: .line 106
            aload 1 /* read */
            ifnull 2
            aload 1 /* read */
            invokeinterface org.xnio.conduits.ReadReadyHandler.forceTermination:()V
         2: .line 107
      StackMap locals: org.xnio.conduits.ReadReadyHandler
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.writeReadyHandler:Lorg/xnio/conduits/WriteReadyHandler;
            astore 2 /* write */
        start local 2 // org.xnio.conduits.WriteReadyHandler write
         3: .line 108
            aload 2 /* write */
            ifnull 4
            aload 2 /* write */
            invokeinterface org.xnio.conduits.WriteReadyHandler.forceTermination:()V
         4: .line 109
      StackMap locals: org.xnio.conduits.WriteReadyHandler
      StackMap stack:
            return
        end local 2 // org.xnio.conduits.WriteReadyHandler write
        end local 1 // org.xnio.conduits.ReadReadyHandler read
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/xnio/nio/NioSocketConduit;
            1    5     1   read  Lorg/xnio/conduits/ReadReadyHandler;
            3    5     2  write  Lorg/xnio/conduits/WriteReadyHandler;

  void terminated();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 112
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.readReadyHandler:Lorg/xnio/conduits/ReadReadyHandler;
            astore 1 /* read */
        start local 1 // org.xnio.conduits.ReadReadyHandler read
         1: .line 113
            aload 1 /* read */
            ifnull 2
            aload 1 /* read */
            invokeinterface org.xnio.conduits.ReadReadyHandler.terminated:()V
         2: .line 114
      StackMap locals: org.xnio.conduits.ReadReadyHandler
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.writeReadyHandler:Lorg/xnio/conduits/WriteReadyHandler;
            astore 2 /* write */
        start local 2 // org.xnio.conduits.WriteReadyHandler write
         3: .line 115
            aload 2 /* write */
            ifnull 4
            aload 2 /* write */
            invokeinterface org.xnio.conduits.WriteReadyHandler.terminated:()V
         4: .line 116
      StackMap locals: org.xnio.conduits.WriteReadyHandler
      StackMap stack:
            return
        end local 2 // org.xnio.conduits.WriteReadyHandler write
        end local 1 // org.xnio.conduits.ReadReadyHandler read
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/xnio/nio/NioSocketConduit;
            1    5     1   read  Lorg/xnio/conduits/ReadReadyHandler;
            3    5     2  write  Lorg/xnio/conduits/WriteReadyHandler;

  int getAndSetWriteTimeout(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // int newVal
         0: .line 121
            getstatic org.xnio.nio.NioSocketConduit.writeTimeoutUpdater:Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
            aload 0 /* this */
            iload 1 /* newVal */
            invokevirtual java.util.concurrent.atomic.AtomicIntegerFieldUpdater.getAndSet:(Ljava/lang/Object;I)I
            ireturn
        end local 1 // int newVal
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/xnio/nio/NioSocketConduit;
            0    1     1  newVal  I
    MethodParameters:
        Name  Flags
      newVal  

  int getWriteTimeout();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 125
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.writeTimeout:I
            ireturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;

  private void checkWriteTimeout(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // boolean xfer
         0: .line 129
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.writeTimeout:I
            istore 2 /* timeout */
        start local 2 // int timeout
         1: .line 130
            iload 2 /* timeout */
            ifle 8
         2: .line 131
            iload 1 /* xfer */
            ifeq 5
         3: .line 132
            aload 0 /* this */
            invokestatic java.lang.System.nanoTime:()J
            putfield org.xnio.nio.NioSocketConduit.lastWrite:J
         4: .line 133
            goto 8
         5: .line 134
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.lastWrite:J
            lstore 3 /* lastRead */
        start local 3 // long lastRead
         6: .line 135
            lload 3 /* lastRead */
            lconst_0
            lcmp
            ifle 8
            invokestatic java.lang.System.nanoTime:()J
            lload 3 /* lastRead */
            lsub
            ldc 1000000
            ldiv
            iload 2 /* timeout */
            i2l
            lcmp
            ifle 8
         7: .line 136
            getstatic org.xnio.nio.Log.log:Lorg/xnio/nio/Log;
            invokeinterface org.xnio.nio.Log.writeTimeout:()Lorg/xnio/channels/WriteTimeoutException;
            athrow
        end local 3 // long lastRead
         8: .line 140
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int timeout
        end local 1 // boolean xfer
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/xnio/nio/NioSocketConduit;
            0    9     1      xfer  Z
            1    9     2   timeout  I
            6    8     3  lastRead  J
    Exceptions:
      throws org.xnio.channels.WriteTimeoutException
    MethodParameters:
      Name  Flags
      xfer  final

  public final long transferFrom(java.nio.channels.FileChannel, long, long);
    descriptor: (Ljava/nio/channels/FileChannel;JJ)J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // java.nio.channels.FileChannel src
        start local 2 // long position
        start local 4 // long count
         0: .line 143
            aload 1 /* src */
            lload 2 /* position */
            lload 4 /* count */
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            invokevirtual java.nio.channels.FileChannel.transferTo:(JJLjava/nio/channels/WritableByteChannel;)J
            lstore 6 /* res */
        start local 6 // long res
         1: .line 144
            aload 0 /* this */
            lload 6 /* res */
            lconst_0
            lcmp
            ifle 2
            iconst_1
            goto 3
      StackMap locals: org.xnio.nio.NioSocketConduit java.nio.channels.FileChannel long long long
      StackMap stack: org.xnio.nio.NioSocketConduit
         2: iconst_0
      StackMap locals: org.xnio.nio.NioSocketConduit java.nio.channels.FileChannel long long long
      StackMap stack: org.xnio.nio.NioSocketConduit int
         3: invokevirtual org.xnio.nio.NioSocketConduit.checkWriteTimeout:(Z)V
         4: .line 145
            lload 6 /* res */
            lreturn
        end local 6 // long res
        end local 4 // long count
        end local 2 // long position
        end local 1 // java.nio.channels.FileChannel src
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/xnio/nio/NioSocketConduit;
            0    5     1       src  Ljava/nio/channels/FileChannel;
            0    5     2  position  J
            0    5     4     count  J
            1    5     6       res  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      src       final
      position  final
      count     final

  public long transferFrom(org.xnio.channels.StreamSourceChannel, long, java.nio.ByteBuffer);
    descriptor: (Lorg/xnio/channels/StreamSourceChannel;JLjava/nio/ByteBuffer;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // org.xnio.channels.StreamSourceChannel source
        start local 2 // long count
        start local 4 // java.nio.ByteBuffer throughBuffer
         0: .line 149
            aload 1 /* source */
            lload 2 /* count */
            aload 4 /* throughBuffer */
            aload 0 /* this */
            invokestatic org.xnio.conduits.Conduits.transfer:(Ljava/nio/channels/ReadableByteChannel;JLjava/nio/ByteBuffer;Lorg/xnio/conduits/StreamSinkConduit;)J
            lreturn
        end local 4 // java.nio.ByteBuffer throughBuffer
        end local 2 // long count
        end local 1 // org.xnio.channels.StreamSourceChannel source
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/xnio/nio/NioSocketConduit;
            0    1     1         source  Lorg/xnio/channels/StreamSourceChannel;
            0    1     2          count  J
            0    1     4  throughBuffer  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      source         final
      count          final
      throughBuffer  final

  public int write(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // java.nio.ByteBuffer src
         0: .line 153
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            aload 1 /* src */
            invokevirtual java.nio.channels.SocketChannel.write:(Ljava/nio/ByteBuffer;)I
            istore 2 /* res */
        start local 2 // int res
         1: .line 154
            aload 0 /* this */
            iload 2 /* res */
            ifle 2
            iconst_1
            goto 3
      StackMap locals: org.xnio.nio.NioSocketConduit java.nio.ByteBuffer int
      StackMap stack: org.xnio.nio.NioSocketConduit
         2: iconst_0
      StackMap locals: org.xnio.nio.NioSocketConduit java.nio.ByteBuffer int
      StackMap stack: org.xnio.nio.NioSocketConduit int
         3: invokevirtual org.xnio.nio.NioSocketConduit.checkWriteTimeout:(Z)V
         4: .line 155
            iload 2 /* res */
            ireturn
        end local 2 // int res
        end local 1 // java.nio.ByteBuffer src
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/xnio/nio/NioSocketConduit;
            0    5     1   src  Ljava/nio/ByteBuffer;
            1    5     2   res  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      src   final

  public long write(java.nio.ByteBuffer[], int, int);
    descriptor: ([Ljava/nio/ByteBuffer;II)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // java.nio.ByteBuffer[] srcs
        start local 2 // int offset
        start local 3 // int length
         0: .line 159
            iload 3 /* length */
            iconst_1
            if_icmpne 2
         1: .line 160
            aload 0 /* this */
            aload 1 /* srcs */
            iload 2 /* offset */
            aaload
            invokevirtual org.xnio.nio.NioSocketConduit.write:(Ljava/nio/ByteBuffer;)I
            i2l
            lreturn
         2: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            aload 1 /* srcs */
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual java.nio.channels.SocketChannel.write:([Ljava/nio/ByteBuffer;II)J
            lstore 4 /* res */
        start local 4 // long res
         3: .line 163
            aload 0 /* this */
            lload 4 /* res */
            lconst_0
            lcmp
            ifle 4
            iconst_1
            goto 5
      StackMap locals: org.xnio.nio.NioSocketConduit java.nio.ByteBuffer[] int int long
      StackMap stack: org.xnio.nio.NioSocketConduit
         4: iconst_0
      StackMap locals: org.xnio.nio.NioSocketConduit java.nio.ByteBuffer[] int int long
      StackMap stack: org.xnio.nio.NioSocketConduit int
         5: invokevirtual org.xnio.nio.NioSocketConduit.checkWriteTimeout:(Z)V
         6: .line 164
            lload 4 /* res */
            lreturn
        end local 4 // long res
        end local 3 // int length
        end local 2 // int offset
        end local 1 // java.nio.ByteBuffer[] srcs
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/xnio/nio/NioSocketConduit;
            0    7     1    srcs  [Ljava/nio/ByteBuffer;
            0    7     2  offset  I
            0    7     3  length  I
            3    7     4     res  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      srcs    final
      offset  final
      length  final

  public int writeFinal(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // java.nio.ByteBuffer src
         0: .line 169
            aload 0 /* this */
            aload 1 /* src */
            invokestatic org.xnio.conduits.Conduits.writeFinalBasic:(Lorg/xnio/conduits/StreamSinkConduit;Ljava/nio/ByteBuffer;)I
            ireturn
        end local 1 // java.nio.ByteBuffer src
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;
            0    1     1   src  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      src   

  public long writeFinal(java.nio.ByteBuffer[], int, int);
    descriptor: ([Ljava/nio/ByteBuffer;II)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // java.nio.ByteBuffer[] srcs
        start local 2 // int offset
        start local 3 // int length
         0: .line 174
            aload 0 /* this */
            aload 1 /* srcs */
            iload 2 /* offset */
            iload 3 /* length */
            invokestatic org.xnio.conduits.Conduits.writeFinalBasic:(Lorg/xnio/conduits/StreamSinkConduit;[Ljava/nio/ByteBuffer;II)J
            lreturn
        end local 3 // int length
        end local 2 // int offset
        end local 1 // java.nio.ByteBuffer[] srcs
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/xnio/nio/NioSocketConduit;
            0    1     1    srcs  [Ljava/nio/ByteBuffer;
            0    1     2  offset  I
            0    1     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      srcs    
      offset  
      length  

  public boolean flush();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 178
            iconst_1
            ireturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;
    Exceptions:
      throws java.io.IOException

  public void terminateWrites();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 182
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.connection:Lorg/xnio/nio/NioSocketStreamConnection;
            invokevirtual org.xnio.nio.NioSocketStreamConnection.writeClosed:()Z
            ifeq 14
         1: .line 183
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getSelectionKey:()Ljava/nio/channels/SelectionKey;
            invokevirtual java.nio.channels.SelectionKey.isValid:()Z
            ifeq 3
         2: .line 184
            aload 0 /* this */
            iconst_4
            invokevirtual org.xnio.nio.NioSocketConduit.suspend:(I)V
         3: .line 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            invokevirtual java.nio.channels.SocketChannel.isOpen:()Z
            ifeq 13
         4: .line 187
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            invokevirtual java.nio.channels.SocketChannel.socket:()Ljava/net/Socket;
            invokevirtual java.net.Socket.shutdownOutput:()V
         5: .line 188
            goto 13
      StackMap locals:
      StackMap stack: java.net.SocketException
         6: pop
         7: .line 191
            goto 13
      StackMap locals:
      StackMap stack: java.nio.channels.ClosedChannelException
         8: pop
         9: .line 193
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.writeTerminated:()V
            goto 14
        10: .line 192
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
        11: .line 193
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.writeTerminated:()V
        12: .line 194
            aload 1
            athrow
        13: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.writeTerminated:()V
        14: .line 195
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lorg/xnio/nio/NioSocketConduit;
      Exception table:
        from    to  target  type
           4     5       6  Class java.net.SocketException
           1     7       8  Class java.nio.channels.ClosedChannelException
           1     9      10  any
    Exceptions:
      throws java.io.IOException

  public void truncateWrites();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 198
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.terminateWrites:()V
         1: .line 199
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/xnio/nio/NioSocketConduit;
    Exceptions:
      throws java.io.IOException

  void writeTerminated();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 202
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.writeReadyHandler:Lorg/xnio/conduits/WriteReadyHandler;
            astore 1 /* writeReadyHandler */
        start local 1 // org.xnio.conduits.WriteReadyHandler writeReadyHandler
         1: .line 203
            aload 1 /* writeReadyHandler */
            ifnull 5
         2: .line 204
            aload 1 /* writeReadyHandler */
            invokeinterface org.xnio.conduits.WriteReadyHandler.terminated:()V
         3: .line 205
            goto 5
      StackMap locals: org.xnio.nio.NioSocketConduit org.xnio.conduits.WriteReadyHandler
      StackMap stack: java.lang.Throwable
         4: pop
         5: .line 206
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xnio.conduits.WriteReadyHandler writeReadyHandler
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    6     0               this  Lorg/xnio/nio/NioSocketConduit;
            1    6     1  writeReadyHandler  Lorg/xnio/conduits/WriteReadyHandler;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable

  public boolean isWriteShutdown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 209
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.connection:Lorg/xnio/nio/NioSocketStreamConnection;
            invokevirtual org.xnio.nio.NioSocketStreamConnection.isWriteShutdown:()Z
            ireturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void resumeWrites();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 213
            aload 0 /* this */
            iconst_4
            invokevirtual org.xnio.nio.NioSocketConduit.resume:(I)V
         1: .line 214
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void suspendWrites();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 217
            aload 0 /* this */
            iconst_4
            invokevirtual org.xnio.nio.NioSocketConduit.suspend:(I)V
         1: .line 218
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void wakeupWrites();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 221
            aload 0 /* this */
            iconst_4
            invokevirtual org.xnio.nio.NioSocketConduit.wakeup:(I)V
         1: .line 222
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/xnio/nio/NioSocketConduit;

  public boolean isWriteResumed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 225
            aload 0 /* this */
            iconst_4
            invokevirtual org.xnio.nio.NioSocketConduit.isResumed:(I)Z
            ireturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void awaitWritable();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 229
            invokestatic org.xnio.Xnio.checkBlockingAllowed:()V
         1: .line 230
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.isWriteShutdown:()Z
            ifeq 3
         2: .line 231
            return
         3: .line 233
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getWorker:()Lorg/xnio/XnioWorker;
            invokevirtual org.xnio.XnioWorker.getXnio:()Lorg/xnio/Xnio;
            checkcast org.xnio.nio.NioXnio
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            iconst_4
            invokestatic org.xnio.nio.SelectorUtils.await:(Lorg/xnio/nio/NioXnio;Ljava/nio/channels/SelectableChannel;I)V
         4: .line 234
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/xnio/nio/NioSocketConduit;
    Exceptions:
      throws java.io.IOException

  public void awaitWritable(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // long time
        start local 3 // java.util.concurrent.TimeUnit timeUnit
         0: .line 237
            invokestatic org.xnio.Xnio.checkBlockingAllowed:()V
         1: .line 238
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.isWriteShutdown:()Z
            ifeq 3
         2: .line 239
            return
         3: .line 241
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getWorker:()Lorg/xnio/XnioWorker;
            invokevirtual org.xnio.XnioWorker.getXnio:()Lorg/xnio/Xnio;
            checkcast org.xnio.nio.NioXnio
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            iconst_4
            lload 1 /* time */
            aload 3 /* timeUnit */
            invokestatic org.xnio.nio.SelectorUtils.await:(Lorg/xnio/nio/NioXnio;Ljava/nio/channels/SelectableChannel;IJLjava/util/concurrent/TimeUnit;)V
         4: .line 242
            return
        end local 3 // java.util.concurrent.TimeUnit timeUnit
        end local 1 // long time
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/xnio/nio/NioSocketConduit;
            0    5     1      time  J
            0    5     3  timeUnit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      time      final
      timeUnit  final

  public org.xnio.XnioIoThread getWriteThread();
    descriptor: ()Lorg/xnio/XnioIoThread;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 245
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getWorkerThread:()Lorg/xnio/nio/WorkerThread;
            areturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void setWriteReadyHandler(org.xnio.conduits.WriteReadyHandler);
    descriptor: (Lorg/xnio/conduits/WriteReadyHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // org.xnio.conduits.WriteReadyHandler handler
         0: .line 249
            aload 0 /* this */
            aload 1 /* handler */
            putfield org.xnio.nio.NioSocketConduit.writeReadyHandler:Lorg/xnio/conduits/WriteReadyHandler;
         1: .line 250
            return
        end local 1 // org.xnio.conduits.WriteReadyHandler handler
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/xnio/nio/NioSocketConduit;
            0    2     1  handler  Lorg/xnio/conduits/WriteReadyHandler;
    MethodParameters:
         Name  Flags
      handler  final

  int getAndSetReadTimeout(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // int newVal
         0: .line 255
            getstatic org.xnio.nio.NioSocketConduit.readTimeoutUpdater:Ljava/util/concurrent/atomic/AtomicIntegerFieldUpdater;
            aload 0 /* this */
            iload 1 /* newVal */
            invokevirtual java.util.concurrent.atomic.AtomicIntegerFieldUpdater.getAndSet:(Ljava/lang/Object;I)I
            ireturn
        end local 1 // int newVal
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/xnio/nio/NioSocketConduit;
            0    1     1  newVal  I
    MethodParameters:
        Name  Flags
      newVal  

  int getReadTimeout();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 259
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.readTimeout:I
            ireturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;

  private void checkReadTimeout(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // boolean xfer
         0: .line 263
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.readTimeout:I
            istore 2 /* timeout */
        start local 2 // int timeout
         1: .line 264
            iload 2 /* timeout */
            ifle 8
         2: .line 265
            iload 1 /* xfer */
            ifeq 5
         3: .line 266
            aload 0 /* this */
            invokestatic java.lang.System.nanoTime:()J
            putfield org.xnio.nio.NioSocketConduit.lastRead:J
         4: .line 267
            goto 8
         5: .line 268
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.lastRead:J
            lstore 3 /* lastRead */
        start local 3 // long lastRead
         6: .line 269
            lload 3 /* lastRead */
            lconst_0
            lcmp
            ifle 8
            invokestatic java.lang.System.nanoTime:()J
            lload 3 /* lastRead */
            lsub
            ldc 1000000
            ldiv
            iload 2 /* timeout */
            i2l
            lcmp
            ifle 8
         7: .line 270
            getstatic org.xnio.nio.Log.log:Lorg/xnio/nio/Log;
            invokeinterface org.xnio.nio.Log.readTimeout:()Lorg/xnio/channels/ReadTimeoutException;
            athrow
        end local 3 // long lastRead
         8: .line 274
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int timeout
        end local 1 // boolean xfer
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lorg/xnio/nio/NioSocketConduit;
            0    9     1      xfer  Z
            1    9     2   timeout  I
            6    8     3  lastRead  J
    Exceptions:
      throws org.xnio.channels.ReadTimeoutException
    MethodParameters:
      Name  Flags
      xfer  final

  public long transferTo(long, long, java.nio.channels.FileChannel);
    descriptor: (JJLjava/nio/channels/FileChannel;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=4
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // long position
        start local 3 // long count
        start local 5 // java.nio.channels.FileChannel target
         0: .line 277
            aload 5 /* target */
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            lload 1 /* position */
            lload 3 /* count */
            invokevirtual java.nio.channels.FileChannel.transferFrom:(Ljava/nio/channels/ReadableByteChannel;JJ)J
            lstore 6 /* res */
        start local 6 // long res
         1: .line 278
            aload 0 /* this */
            lload 6 /* res */
            lconst_0
            lcmp
            ifle 2
            iconst_1
            goto 3
      StackMap locals: org.xnio.nio.NioSocketConduit long long java.nio.channels.FileChannel long
      StackMap stack: org.xnio.nio.NioSocketConduit
         2: iconst_0
      StackMap locals: org.xnio.nio.NioSocketConduit long long java.nio.channels.FileChannel long
      StackMap stack: org.xnio.nio.NioSocketConduit int
         3: invokevirtual org.xnio.nio.NioSocketConduit.checkReadTimeout:(Z)V
         4: .line 279
            lload 6 /* res */
            lreturn
        end local 6 // long res
        end local 5 // java.nio.channels.FileChannel target
        end local 3 // long count
        end local 1 // long position
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lorg/xnio/nio/NioSocketConduit;
            0    5     1  position  J
            0    5     3     count  J
            0    5     5    target  Ljava/nio/channels/FileChannel;
            1    5     6       res  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      position  final
      count     final
      target    final

  public long transferTo(long, java.nio.ByteBuffer, org.xnio.channels.StreamSinkChannel);
    descriptor: (JLjava/nio/ByteBuffer;Lorg/xnio/channels/StreamSinkChannel;)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // long count
        start local 3 // java.nio.ByteBuffer throughBuffer
        start local 4 // org.xnio.channels.StreamSinkChannel target
         0: .line 283
            aload 0 /* this */
            lload 1 /* count */
            aload 3 /* throughBuffer */
            aload 4 /* target */
            invokestatic org.xnio.conduits.Conduits.transfer:(Lorg/xnio/conduits/StreamSourceConduit;JLjava/nio/ByteBuffer;Ljava/nio/channels/WritableByteChannel;)J
            lreturn
        end local 4 // org.xnio.channels.StreamSinkChannel target
        end local 3 // java.nio.ByteBuffer throughBuffer
        end local 1 // long count
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lorg/xnio/nio/NioSocketConduit;
            0    1     1          count  J
            0    1     3  throughBuffer  Ljava/nio/ByteBuffer;
            0    1     4         target  Lorg/xnio/channels/StreamSinkChannel;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      count          final
      throughBuffer  final
      target         final

  public int read(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // java.nio.ByteBuffer dst
         0: .line 289
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            aload 1 /* dst */
            invokevirtual java.nio.channels.SocketChannel.read:(Ljava/nio/ByteBuffer;)I
            istore 2 /* res */
        start local 2 // int res
         1: .line 290
            goto 4
        end local 2 // int res
      StackMap locals:
      StackMap stack: java.nio.channels.ClosedChannelException
         2: pop
         3: .line 291
            iconst_m1
            ireturn
        start local 2 // int res
         4: .line 293
      StackMap locals: int
      StackMap stack:
            iload 2 /* res */
            iconst_m1
            if_icmpeq 7
            aload 0 /* this */
            iload 2 /* res */
            ifle 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack: org.xnio.nio.NioSocketConduit
         5: iconst_0
      StackMap locals: org.xnio.nio.NioSocketConduit java.nio.ByteBuffer int
      StackMap stack: org.xnio.nio.NioSocketConduit int
         6: invokevirtual org.xnio.nio.NioSocketConduit.checkReadTimeout:(Z)V
            goto 8
         7: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.terminateReads:()V
         8: .line 295
      StackMap locals:
      StackMap stack:
            iload 2 /* res */
            ireturn
        end local 2 // int res
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/xnio/nio/NioSocketConduit;
            0    9     1   dst  Ljava/nio/ByteBuffer;
            1    2     2   res  I
            4    9     2   res  I
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.channels.ClosedChannelException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dst   final

  public long read(java.nio.ByteBuffer[], int, int);
    descriptor: ([Ljava/nio/ByteBuffer;II)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // java.nio.ByteBuffer[] dsts
        start local 2 // int offset
        start local 3 // int length
         0: .line 299
            iload 3 /* length */
            iconst_1
            if_icmpne 2
         1: .line 300
            aload 0 /* this */
            aload 1 /* dsts */
            iload 2 /* offset */
            aaload
            invokevirtual org.xnio.nio.NioSocketConduit.read:(Ljava/nio/ByteBuffer;)I
            i2l
            lreturn
         2: .line 304
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            aload 1 /* dsts */
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual java.nio.channels.SocketChannel.read:([Ljava/nio/ByteBuffer;II)J
            lstore 4 /* res */
        start local 4 // long res
         3: .line 305
            goto 6
        end local 4 // long res
      StackMap locals:
      StackMap stack: java.nio.channels.ClosedChannelException
         4: pop
         5: .line 306
            ldc -1
            lreturn
        start local 4 // long res
         6: .line 308
      StackMap locals: long
      StackMap stack:
            lload 4 /* res */
            ldc -1
            lcmp
            ifeq 9
            aload 0 /* this */
            lload 4 /* res */
            lconst_0
            lcmp
            ifle 7
            iconst_1
            goto 8
      StackMap locals:
      StackMap stack: org.xnio.nio.NioSocketConduit
         7: iconst_0
      StackMap locals: org.xnio.nio.NioSocketConduit java.nio.ByteBuffer[] int int long
      StackMap stack: org.xnio.nio.NioSocketConduit int
         8: invokevirtual org.xnio.nio.NioSocketConduit.checkReadTimeout:(Z)V
            goto 10
         9: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.terminateReads:()V
        10: .line 310
      StackMap locals:
      StackMap stack:
            lload 4 /* res */
            lreturn
        end local 4 // long res
        end local 3 // int length
        end local 2 // int offset
        end local 1 // java.nio.ByteBuffer[] dsts
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lorg/xnio/nio/NioSocketConduit;
            0   11     1    dsts  [Ljava/nio/ByteBuffer;
            0   11     2  offset  I
            0   11     3  length  I
            3    4     4     res  J
            6   11     4     res  J
      Exception table:
        from    to  target  type
           2     3       4  Class java.nio.channels.ClosedChannelException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      dsts    final
      offset  final
      length  final

  public void terminateReads();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 314
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.connection:Lorg/xnio/nio/NioSocketStreamConnection;
            invokevirtual org.xnio.nio.NioSocketStreamConnection.readClosed:()Z
            ifeq 14
         1: .line 315
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getSelectionKey:()Ljava/nio/channels/SelectionKey;
            invokevirtual java.nio.channels.SelectionKey.isValid:()Z
            ifeq 3
         2: .line 316
            aload 0 /* this */
            iconst_1
            invokevirtual org.xnio.nio.NioSocketConduit.suspend:(I)V
         3: .line 318
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            invokevirtual java.nio.channels.SocketChannel.isOpen:()Z
            ifeq 13
         4: .line 319
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            invokevirtual java.nio.channels.SocketChannel.socket:()Ljava/net/Socket;
            invokevirtual java.net.Socket.shutdownInput:()V
         5: .line 320
            goto 13
      StackMap locals:
      StackMap stack: java.net.SocketException
         6: pop
         7: .line 323
            goto 13
      StackMap locals:
      StackMap stack: java.nio.channels.ClosedChannelException
         8: pop
         9: .line 325
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.readTerminated:()V
            goto 14
        10: .line 324
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 1
        11: .line 325
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.readTerminated:()V
        12: .line 326
            aload 1
            athrow
        13: .line 325
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.readTerminated:()V
        14: .line 327
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lorg/xnio/nio/NioSocketConduit;
      Exception table:
        from    to  target  type
           4     5       6  Class java.net.SocketException
           1     7       8  Class java.nio.channels.ClosedChannelException
           1     9      10  any
    Exceptions:
      throws java.io.IOException

  void readTerminated();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 330
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.readReadyHandler:Lorg/xnio/conduits/ReadReadyHandler;
            astore 1 /* readReadyHandler */
        start local 1 // org.xnio.conduits.ReadReadyHandler readReadyHandler
         1: .line 331
            aload 1 /* readReadyHandler */
            ifnull 5
         2: .line 332
            aload 1 /* readReadyHandler */
            invokeinterface org.xnio.conduits.ReadReadyHandler.terminated:()V
         3: .line 333
            goto 5
      StackMap locals: org.xnio.nio.NioSocketConduit org.xnio.conduits.ReadReadyHandler
      StackMap stack: java.lang.Throwable
         4: pop
         5: .line 334
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.xnio.conduits.ReadReadyHandler readReadyHandler
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    6     0              this  Lorg/xnio/nio/NioSocketConduit;
            1    6     1  readReadyHandler  Lorg/xnio/conduits/ReadReadyHandler;
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.Throwable

  public boolean isReadShutdown();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 337
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.connection:Lorg/xnio/nio/NioSocketStreamConnection;
            invokevirtual org.xnio.nio.NioSocketStreamConnection.isReadShutdown:()Z
            ireturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void resumeReads();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 341
            aload 0 /* this */
            iconst_1
            invokevirtual org.xnio.nio.NioSocketConduit.resume:(I)V
         1: .line 342
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void suspendReads();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 345
            aload 0 /* this */
            iconst_1
            invokevirtual org.xnio.nio.NioSocketConduit.suspend:(I)V
         1: .line 346
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void wakeupReads();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 349
            aload 0 /* this */
            iconst_1
            invokevirtual org.xnio.nio.NioSocketConduit.wakeup:(I)V
         1: .line 350
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/xnio/nio/NioSocketConduit;

  public boolean isReadResumed();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 353
            aload 0 /* this */
            iconst_1
            invokevirtual org.xnio.nio.NioSocketConduit.isResumed:(I)Z
            ireturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void awaitReadable();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 357
            invokestatic org.xnio.Xnio.checkBlockingAllowed:()V
         1: .line 358
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getWorker:()Lorg/xnio/XnioWorker;
            invokevirtual org.xnio.XnioWorker.getXnio:()Lorg/xnio/Xnio;
            checkcast org.xnio.nio.NioXnio
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            iconst_1
            invokestatic org.xnio.nio.SelectorUtils.await:(Lorg/xnio/nio/NioXnio;Ljava/nio/channels/SelectableChannel;I)V
         2: .line 359
            return
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/xnio/nio/NioSocketConduit;
    Exceptions:
      throws java.io.IOException

  public void awaitReadable(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // long time
        start local 3 // java.util.concurrent.TimeUnit timeUnit
         0: .line 362
            invokestatic org.xnio.Xnio.checkBlockingAllowed:()V
         1: .line 363
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getWorker:()Lorg/xnio/XnioWorker;
            invokevirtual org.xnio.XnioWorker.getXnio:()Lorg/xnio/Xnio;
            checkcast org.xnio.nio.NioXnio
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            iconst_1
            lload 1 /* time */
            aload 3 /* timeUnit */
            invokestatic org.xnio.nio.SelectorUtils.await:(Lorg/xnio/nio/NioXnio;Ljava/nio/channels/SelectableChannel;IJLjava/util/concurrent/TimeUnit;)V
         2: .line 364
            return
        end local 3 // java.util.concurrent.TimeUnit timeUnit
        end local 1 // long time
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/xnio/nio/NioSocketConduit;
            0    3     1      time  J
            0    3     3  timeUnit  Ljava/util/concurrent/TimeUnit;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      time      final
      timeUnit  final

  public org.xnio.XnioIoThread getReadThread();
    descriptor: ()Lorg/xnio/XnioIoThread;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 367
            aload 0 /* this */
            invokevirtual org.xnio.nio.NioSocketConduit.getWorkerThread:()Lorg/xnio/nio/WorkerThread;
            areturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;

  public void setReadReadyHandler(org.xnio.conduits.ReadReadyHandler);
    descriptor: (Lorg/xnio/conduits/ReadReadyHandler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.xnio.nio.NioSocketConduit this
        start local 1 // org.xnio.conduits.ReadReadyHandler handler
         0: .line 371
            aload 0 /* this */
            aload 1 /* handler */
            putfield org.xnio.nio.NioSocketConduit.readReadyHandler:Lorg/xnio/conduits/ReadReadyHandler;
         1: .line 372
            return
        end local 1 // org.xnio.conduits.ReadReadyHandler handler
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/xnio/nio/NioSocketConduit;
            0    2     1  handler  Lorg/xnio/conduits/ReadReadyHandler;
    MethodParameters:
         Name  Flags
      handler  final

  java.nio.channels.SocketChannel getSocketChannel();
    descriptor: ()Ljava/nio/channels/SocketChannel;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.xnio.nio.NioSocketConduit this
         0: .line 375
            aload 0 /* this */
            getfield org.xnio.nio.NioSocketConduit.socketChannel:Ljava/nio/channels/SocketChannel;
            areturn
        end local 0 // org.xnio.nio.NioSocketConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/xnio/nio/NioSocketConduit;
}
SourceFile: "NioSocketConduit.java"