public class org.eclipse.jetty.server.HttpInput$Content implements org.eclipse.jetty.util.Callback
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.server.HttpInput$Content
  super_class: java.lang.Object
{
  protected final java.nio.ByteBuffer _content;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  public void <init>(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
        start local 1 // java.nio.ByteBuffer content
         0: .line 443
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 445
            aload 0 /* this */
            aload 1 /* content */
            putfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
         2: .line 446
            return
        end local 1 // java.nio.ByteBuffer content
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/eclipse/jetty/server/HttpInput$Content;
            0    3     1  content  Ljava/nio/ByteBuffer;
    MethodParameters:
         Name  Flags
      content  

  public java.nio.ByteBuffer getByteBuffer();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
         0: .line 454
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            areturn
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/HttpInput$Content;

  public org.eclipse.jetty.util.thread.Invocable$InvocationType getInvocationType();
    descriptor: ()Lorg/eclipse/jetty/util/thread/Invocable$InvocationType;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
         0: .line 460
            getstatic org.eclipse.jetty.util.thread.Invocable$InvocationType.NON_BLOCKING:Lorg/eclipse/jetty/util/thread/Invocable$InvocationType;
            areturn
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/HttpInput$Content;

  public int get(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
        start local 1 // byte[] buffer
        start local 2 // int offset
        start local 3 // int length
         0: .line 472
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 3 /* length */
            invokestatic java.lang.Math.min:(II)I
            istore 3 /* length */
         1: .line 473
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            aload 1 /* buffer */
            iload 2 /* offset */
            iload 3 /* length */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
         2: .line 474
            iload 3 /* length */
            ireturn
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] buffer
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jetty/server/HttpInput$Content;
            0    3     1  buffer  [B
            0    3     2  offset  I
            0    3     3  length  I
    MethodParameters:
        Name  Flags
      buffer  
      offset  
      length  

  public int skip(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
        start local 1 // int length
         0: .line 484
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            iload 1 /* length */
            invokestatic java.lang.Math.min:(II)I
            istore 1 /* length */
         1: .line 485
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 1 /* length */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/Buffer;
            pop
         2: .line 486
            iload 1 /* length */
            ireturn
        end local 1 // int length
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/jetty/server/HttpInput$Content;
            0    3     1  length  I
    MethodParameters:
        Name  Flags
      length  

  public boolean hasContent();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
         0: .line 496
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ireturn
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/HttpInput$Content;

  public int remaining();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
         0: .line 506
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            ireturn
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/HttpInput$Content;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
         0: .line 516
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.hasRemaining:()Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/server/HttpInput$Content;

  public boolean isSpecial();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
         0: .line 525
            iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/HttpInput$Content;

  public boolean isEof();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
         0: .line 537
            iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/HttpInput$Content;

  public java.lang.Throwable getError();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
         0: .line 546
            aconst_null
            areturn
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/HttpInput$Content;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.HttpInput$Content this
         0: .line 552
            ldc "%s@%x{%s,spc=%s,eof=%s,err=%s}"
            bipush 6
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            invokevirtual java.lang.Object.hashCode:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
         1: .line 553
            aload 0 /* this */
            getfield org.eclipse.jetty.server.HttpInput$Content._content:Ljava/nio/ByteBuffer;
            invokestatic org.eclipse.jetty.util.BufferUtil.toDetailString:(Ljava/nio/ByteBuffer;)Ljava/lang/String;
            aastore
            dup
            iconst_3
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.HttpInput$Content.isSpecial:()Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aastore
            dup
            iconst_4
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.HttpInput$Content.isEof:()Z
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aastore
            dup
            iconst_5
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.HttpInput$Content.getError:()Ljava/lang/Throwable;
            aastore
         2: .line 552
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jetty.server.HttpInput$Content this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/server/HttpInput$Content;
}
SourceFile: "HttpInput.java"
NestHost: org.eclipse.jetty.server.HttpInput
InnerClasses:
  public Content = org.eclipse.jetty.server.HttpInput$Content of org.eclipse.jetty.server.HttpInput
  public final InvocationType = org.eclipse.jetty.util.thread.Invocable$InvocationType of org.eclipse.jetty.util.thread.Invocable