public class io.undertow.conduits.BytesReceivedStreamSourceConduit extends org.xnio.conduits.AbstractStreamSourceConduit<org.xnio.conduits.StreamSourceConduit>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.undertow.conduits.BytesReceivedStreamSourceConduit
  super_class: org.xnio.conduits.AbstractStreamSourceConduit
{
  private final io.undertow.conduits.ByteActivityCallback callback;
    descriptor: Lio/undertow/conduits/ByteActivityCallback;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.xnio.conduits.StreamSourceConduit, io.undertow.conduits.ByteActivityCallback);
    descriptor: (Lorg/xnio/conduits/StreamSourceConduit;Lio/undertow/conduits/ByteActivityCallback;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
        start local 1 // org.xnio.conduits.StreamSourceConduit next
        start local 2 // io.undertow.conduits.ByteActivityCallback callback
         0: .line 43
            aload 0 /* this */
            aload 1 /* next */
            invokespecial org.xnio.conduits.AbstractStreamSourceConduit.<init>:(Lorg/xnio/conduits/StreamSourceConduit;)V
         1: .line 44
            aload 0 /* this */
            aload 2 /* callback */
            putfield io.undertow.conduits.BytesReceivedStreamSourceConduit.callback:Lio/undertow/conduits/ByteActivityCallback;
         2: .line 45
            return
        end local 2 // io.undertow.conduits.ByteActivityCallback callback
        end local 1 // org.xnio.conduits.StreamSourceConduit next
        end local 0 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/undertow/conduits/BytesReceivedStreamSourceConduit;
            0    3     1      next  Lorg/xnio/conduits/StreamSourceConduit;
            0    3     2  callback  Lio/undertow/conduits/ByteActivityCallback;
    MethodParameters:
          Name  Flags
      next      
      callback  

  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 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
        start local 1 // long position
        start local 3 // long count
        start local 5 // java.nio.channels.FileChannel target
         0: .line 49
            aload 0 /* this */
            lload 1 /* position */
            lload 3 /* count */
            aload 5 /* target */
            invokespecial org.xnio.conduits.AbstractStreamSourceConduit.transferTo:(JJLjava/nio/channels/FileChannel;)J
            lstore 6 /* l */
        start local 6 // long l
         1: .line 50
            lload 6 /* l */
            lconst_0
            lcmp
            ifle 3
         2: .line 51
            aload 0 /* this */
            getfield io.undertow.conduits.BytesReceivedStreamSourceConduit.callback:Lio/undertow/conduits/ByteActivityCallback;
            lload 6 /* l */
            invokeinterface io.undertow.conduits.ByteActivityCallback.activity:(J)V
         3: .line 53
      StackMap locals: long
      StackMap stack:
            lload 6 /* l */
            lreturn
        end local 6 // long l
        end local 5 // java.nio.channels.FileChannel target
        end local 3 // long count
        end local 1 // long position
        end local 0 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lio/undertow/conduits/BytesReceivedStreamSourceConduit;
            0    4     1  position  J
            0    4     3     count  J
            0    4     5    target  Ljava/nio/channels/FileChannel;
            1    4     6         l  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      position  
      count     
      target    

  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=7, args_size=4
        start local 0 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
        start local 1 // long count
        start local 3 // java.nio.ByteBuffer throughBuffer
        start local 4 // org.xnio.channels.StreamSinkChannel target
         0: .line 58
            aload 0 /* this */
            lload 1 /* count */
            aload 3 /* throughBuffer */
            aload 4 /* target */
            invokespecial org.xnio.conduits.AbstractStreamSourceConduit.transferTo:(JLjava/nio/ByteBuffer;Lorg/xnio/channels/StreamSinkChannel;)J
            lstore 5 /* l */
        start local 5 // long l
         1: .line 59
            lload 5 /* l */
            lconst_0
            lcmp
            ifle 3
         2: .line 60
            aload 0 /* this */
            getfield io.undertow.conduits.BytesReceivedStreamSourceConduit.callback:Lio/undertow/conduits/ByteActivityCallback;
            lload 5 /* l */
            invokeinterface io.undertow.conduits.ByteActivityCallback.activity:(J)V
         3: .line 62
      StackMap locals: long
      StackMap stack:
            lload 5 /* l */
            lreturn
        end local 5 // long l
        end local 4 // org.xnio.channels.StreamSinkChannel target
        end local 3 // java.nio.ByteBuffer throughBuffer
        end local 1 // long count
        end local 0 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lio/undertow/conduits/BytesReceivedStreamSourceConduit;
            0    4     1          count  J
            0    4     3  throughBuffer  Ljava/nio/ByteBuffer;
            0    4     4         target  Lorg/xnio/channels/StreamSinkChannel;
            1    4     5              l  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
               Name  Flags
      count          
      throughBuffer  
      target         

  public int read(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
        start local 1 // java.nio.ByteBuffer dst
         0: .line 67
            aload 0 /* this */
            aload 1 /* dst */
            invokespecial org.xnio.conduits.AbstractStreamSourceConduit.read:(Ljava/nio/ByteBuffer;)I
            istore 2 /* i */
        start local 2 // int i
         1: .line 68
            iload 2 /* i */
            ifle 3
         2: .line 69
            aload 0 /* this */
            getfield io.undertow.conduits.BytesReceivedStreamSourceConduit.callback:Lio/undertow/conduits/ByteActivityCallback;
            iload 2 /* i */
            i2l
            invokeinterface io.undertow.conduits.ByteActivityCallback.activity:(J)V
         3: .line 71
      StackMap locals: int
      StackMap stack:
            iload 2 /* i */
            ireturn
        end local 2 // int i
        end local 1 // java.nio.ByteBuffer dst
        end local 0 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/undertow/conduits/BytesReceivedStreamSourceConduit;
            0    4     1   dst  Ljava/nio/ByteBuffer;
            1    4     2     i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dst   

  public long read(java.nio.ByteBuffer[], int, int);
    descriptor: ([Ljava/nio/ByteBuffer;II)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
        start local 1 // java.nio.ByteBuffer[] dsts
        start local 2 // int offs
        start local 3 // int len
         0: .line 76
            aload 0 /* this */
            aload 1 /* dsts */
            iload 2 /* offs */
            iload 3 /* len */
            invokespecial org.xnio.conduits.AbstractStreamSourceConduit.read:([Ljava/nio/ByteBuffer;II)J
            lstore 4 /* l */
        start local 4 // long l
         1: .line 77
            lload 4 /* l */
            lconst_0
            lcmp
            ifle 3
         2: .line 78
            aload 0 /* this */
            getfield io.undertow.conduits.BytesReceivedStreamSourceConduit.callback:Lio/undertow/conduits/ByteActivityCallback;
            lload 4 /* l */
            invokeinterface io.undertow.conduits.ByteActivityCallback.activity:(J)V
         3: .line 80
      StackMap locals: long
      StackMap stack:
            lload 4 /* l */
            lreturn
        end local 4 // long l
        end local 3 // int len
        end local 2 // int offs
        end local 1 // java.nio.ByteBuffer[] dsts
        end local 0 // io.undertow.conduits.BytesReceivedStreamSourceConduit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/undertow/conduits/BytesReceivedStreamSourceConduit;
            0    4     1  dsts  [Ljava/nio/ByteBuffer;
            0    4     2  offs  I
            0    4     3   len  I
            1    4     4     l  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      dsts  
      offs  
      len   
}
Signature: Lorg/xnio/conduits/AbstractStreamSourceConduit<Lorg/xnio/conduits/StreamSourceConduit;>;
SourceFile: "BytesReceivedStreamSourceConduit.java"