class jdk.incubator.http.Http1Request$StreamSubscriber extends jdk.incubator.http.Http1Exchange$Http1BodySubscriber
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: jdk.incubator.http.Http1Request$StreamSubscriber
  super_class: jdk.incubator.http.Http1Exchange$Http1BodySubscriber
{
  final jdk.incubator.http.Http1Request this$0;
    descriptor: Ljdk/incubator/http/Http1Request;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(jdk.incubator.http.Http1Request);
    descriptor: (Ljdk/incubator/http/Http1Request;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
         0: .line 229
            aload 0 /* this */
            aload 1
            putfield jdk.incubator.http.Http1Request$StreamSubscriber.this$0:Ljdk/incubator/http/Http1Request;
            aload 0 /* this */
            invokespecial jdk.incubator.http.Http1Exchange$Http1BodySubscriber.<init>:()V
            return
        end local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/Http1Request$StreamSubscriber;
    MethodParameters:
        Name  Flags
      this$0  final

  public void onSubscribe(java.util.concurrent.Flow$Subscription);
    descriptor: (Ljava/util/concurrent/Flow$Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
        start local 1 // java.util.concurrent.Flow$Subscription subscription
         0: .line 233
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.subscription:Ljava/util/concurrent/Flow$Subscription;
            ifnull 4
         1: .line 234
            new java.lang.IllegalStateException
            dup
            ldc "already subscribed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            astore 2 /* t */
        start local 2 // java.lang.Throwable t
         2: .line 235
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.this$0:Ljdk/incubator/http/Http1Request;
            getfield jdk.incubator.http.Http1Request.http1Exchange:Ljdk/incubator/http/Http1Exchange;
            aload 2 /* t */
            invokevirtual jdk.incubator.http.Http1Exchange.appendToOutgoing:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable t
         3: .line 236
            goto 5
         4: .line 237
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* subscription */
            putfield jdk.incubator.http.Http1Request$StreamSubscriber.subscription:Ljava/util/concurrent/Flow$Subscription;
         5: .line 239
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.concurrent.Flow$Subscription subscription
        end local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    6     0          this  Ljdk/incubator/http/Http1Request$StreamSubscriber;
            0    6     1  subscription  Ljava/util/concurrent/Flow$Subscription;
            2    3     2             t  Ljava/lang/Throwable;
    MethodParameters:
              Name  Flags
      subscription  

  public void onNext(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
        start local 1 // java.nio.ByteBuffer item
         0: .line 243
            aload 1 /* item */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 244
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.complete:Z
            ifeq 5
         2: .line 245
            new java.lang.IllegalStateException
            dup
            ldc "subscription already completed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            astore 2 /* t */
        start local 2 // java.lang.Throwable t
         3: .line 246
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.this$0:Ljdk/incubator/http/Http1Request;
            getfield jdk.incubator.http.Http1Request.http1Exchange:Ljdk/incubator/http/Http1Exchange;
            aload 2 /* t */
            invokevirtual jdk.incubator.http.Http1Exchange.appendToOutgoing:(Ljava/lang/Throwable;)V
        end local 2 // java.lang.Throwable t
         4: .line 247
            goto 11
         5: .line 248
      StackMap locals:
      StackMap stack:
            aload 1 /* item */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            istore 2 /* chunklen */
        start local 2 // int chunklen
         6: .line 249
            new java.util.ArrayList
            dup
            iconst_3
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 3 /* l */
        start local 3 // java.util.ArrayList l
         7: .line 250
            aload 3 /* l */
            iload 2 /* chunklen */
            invokestatic jdk.incubator.http.Http1Request.getHeader:(I)Ljava/nio/ByteBuffer;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         8: .line 251
            aload 3 /* l */
            aload 1 /* item */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         9: .line 252
            aload 3 /* l */
            getstatic jdk.incubator.http.Http1Request.CRLF:[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        10: .line 253
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.this$0:Ljdk/incubator/http/Http1Request;
            getfield jdk.incubator.http.Http1Request.http1Exchange:Ljdk/incubator/http/Http1Exchange;
            aload 3 /* l */
            invokevirtual jdk.incubator.http.Http1Exchange.appendToOutgoing:(Ljava/util/List;)V
        end local 3 // java.util.ArrayList l
        end local 2 // int chunklen
        11: .line 255
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.nio.ByteBuffer item
        end local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   12     0      this  Ljdk/incubator/http/Http1Request$StreamSubscriber;
            0   12     1      item  Ljava/nio/ByteBuffer;
            3    4     2         t  Ljava/lang/Throwable;
            6   11     2  chunklen  I
            7   11     3         l  Ljava/util/ArrayList<Ljava/nio/ByteBuffer;>;
    MethodParameters:
      Name  Flags
      item  

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
        start local 1 // java.lang.Throwable throwable
         0: .line 259
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.complete:Z
            ifeq 2
         1: .line 260
            return
         2: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.subscription:Ljava/util/concurrent/Flow$Subscription;
            invokeinterface java.util.concurrent.Flow$Subscription.cancel:()V
         3: .line 263
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.this$0:Ljdk/incubator/http/Http1Request;
            getfield jdk.incubator.http.Http1Request.http1Exchange:Ljdk/incubator/http/Http1Exchange;
            aload 1 /* throwable */
            invokevirtual jdk.incubator.http.Http1Exchange.appendToOutgoing:(Ljava/lang/Throwable;)V
         4: .line 264
            return
        end local 1 // java.lang.Throwable throwable
        end local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Ljdk/incubator/http/Http1Request$StreamSubscriber;
            0    5     1  throwable  Ljava/lang/Throwable;
    MethodParameters:
           Name  Flags
      throwable  

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
         0: .line 268
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.complete:Z
            ifeq 4
         1: .line 269
            new java.lang.IllegalStateException
            dup
            ldc "subscription already completed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            astore 1 /* t */
        start local 1 // java.lang.Throwable t
         2: .line 270
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.this$0:Ljdk/incubator/http/Http1Request;
            getfield jdk.incubator.http.Http1Request.http1Exchange:Ljdk/incubator/http/Http1Exchange;
            aload 1 /* t */
            invokevirtual jdk.incubator.http.Http1Exchange.appendToOutgoing:(Ljava/lang/Throwable;)V
        end local 1 // java.lang.Throwable t
         3: .line 271
            goto 11
         4: .line 272
      StackMap locals:
      StackMap stack:
            new java.util.ArrayList
            dup
            iconst_2
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 1 /* l */
        start local 1 // java.util.ArrayList l
         5: .line 273
            aload 1 /* l */
            getstatic jdk.incubator.http.Http1Request.EMPTY_CHUNK_BYTES:[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         6: .line 274
            aload 1 /* l */
            getstatic jdk.incubator.http.Http1Request.CRLF:[B
            invokestatic java.nio.ByteBuffer.wrap:([B)Ljava/nio/ByteBuffer;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         7: .line 275
            aload 0 /* this */
            iconst_1
            putfield jdk.incubator.http.Http1Request$StreamSubscriber.complete:Z
         8: .line 277
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.this$0:Ljdk/incubator/http/Http1Request;
            getfield jdk.incubator.http.Http1Request.http1Exchange:Ljdk/incubator/http/Http1Exchange;
            aload 1 /* l */
            invokevirtual jdk.incubator.http.Http1Exchange.appendToOutgoing:(Ljava/util/List;)V
         9: .line 278
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.this$0:Ljdk/incubator/http/Http1Request;
            getfield jdk.incubator.http.Http1Request.http1Exchange:Ljdk/incubator/http/Http1Exchange;
            getstatic jdk.incubator.http.Http1Request$StreamSubscriber.COMPLETED:Ljava/util/List;
            invokevirtual jdk.incubator.http.Http1Exchange.appendToOutgoing:(Ljava/util/List;)V
        10: .line 279
            aload 0 /* this */
            getfield jdk.incubator.http.Http1Request$StreamSubscriber.this$0:Ljdk/incubator/http/Http1Request;
            invokevirtual jdk.incubator.http.Http1Request.setFinished:()V
        end local 1 // java.util.ArrayList l
        11: .line 282
      StackMap locals:
      StackMap stack:
            return
        end local 0 // jdk.incubator.http.Http1Request$StreamSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljdk/incubator/http/Http1Request$StreamSubscriber;
            2    3     1     t  Ljava/lang/Throwable;
            5   11     1     l  Ljava/util/ArrayList<Ljava/nio/ByteBuffer;>;

  public void onNext(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.nio.ByteBuffer
            invokevirtual jdk.incubator.http.Http1Request$StreamSubscriber.onNext:(Ljava/nio/ByteBuffer;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "Http1Request.java"
NestHost: jdk.incubator.http.Http1Request
InnerClasses:
  public abstract Subscription = java.util.concurrent.Flow$Subscription of java.util.concurrent.Flow
  abstract Http1BodySubscriber = jdk.incubator.http.Http1Exchange$Http1BodySubscriber of jdk.incubator.http.Http1Exchange
  StreamSubscriber = jdk.incubator.http.Http1Request$StreamSubscriber of jdk.incubator.http.Http1Request