class io.netty.handler.codec.marshalling.ChannelBufferByteOutput implements org.jboss.marshalling.ByteOutput
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.netty.handler.codec.marshalling.ChannelBufferByteOutput
  super_class: java.lang.Object
{
  private final io.netty.buffer.ByteBuf buffer;
    descriptor: Lio/netty/buffer/ByteBuf;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(io.netty.buffer.ByteBuf);
    descriptor: (Lio/netty/buffer/ByteBuf;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
        start local 1 // io.netty.buffer.ByteBuf buffer
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 36
            aload 0 /* this */
            aload 1 /* buffer */
            putfield io.netty.handler.codec.marshalling.ChannelBufferByteOutput.buffer:Lio/netty/buffer/ByteBuf;
         2: .line 37
            return
        end local 1 // io.netty.buffer.ByteBuf buffer
        end local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/netty/handler/codec/marshalling/ChannelBufferByteOutput;
            0    3     1  buffer  Lio/netty/buffer/ByteBuf;
    MethodParameters:
        Name  Flags
      buffer  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
         0: .line 42
            return
        end local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/marshalling/ChannelBufferByteOutput;
    Exceptions:
      throws java.io.IOException

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
         0: .line 47
            return
        end local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/marshalling/ChannelBufferByteOutput;
    Exceptions:
      throws java.io.IOException

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
        start local 1 // int b
         0: .line 51
            aload 0 /* this */
            getfield io.netty.handler.codec.marshalling.ChannelBufferByteOutput.buffer:Lio/netty/buffer/ByteBuf;
            iload 1 /* b */
            invokevirtual io.netty.buffer.ByteBuf.writeByte:(I)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 52
            return
        end local 1 // int b
        end local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/handler/codec/marshalling/ChannelBufferByteOutput;
            0    2     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
        start local 1 // byte[] bytes
         0: .line 56
            aload 0 /* this */
            getfield io.netty.handler.codec.marshalling.ChannelBufferByteOutput.buffer:Lio/netty/buffer/ByteBuf;
            aload 1 /* bytes */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([B)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 57
            return
        end local 1 // byte[] bytes
        end local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/handler/codec/marshalling/ChannelBufferByteOutput;
            0    2     1  bytes  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      bytes  

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
        start local 1 // byte[] bytes
        start local 2 // int srcIndex
        start local 3 // int length
         0: .line 61
            aload 0 /* this */
            getfield io.netty.handler.codec.marshalling.ChannelBufferByteOutput.buffer:Lio/netty/buffer/ByteBuf;
            aload 1 /* bytes */
            iload 2 /* srcIndex */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.writeBytes:([BII)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 62
            return
        end local 3 // int length
        end local 2 // int srcIndex
        end local 1 // byte[] bytes
        end local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/handler/codec/marshalling/ChannelBufferByteOutput;
            0    2     1     bytes  [B
            0    2     2  srcIndex  I
            0    2     3    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      bytes     
      srcIndex  
      length    

  io.netty.buffer.ByteBuf getBuffer();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
         0: .line 69
            aload 0 /* this */
            getfield io.netty.handler.codec.marshalling.ChannelBufferByteOutput.buffer:Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.handler.codec.marshalling.ChannelBufferByteOutput this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/codec/marshalling/ChannelBufferByteOutput;
}
SourceFile: "ChannelBufferByteOutput.java"