final class jdk.internal.net.http.hpack.BulkSizeUpdateWriter implements jdk.internal.net.http.hpack.BinaryRepresentationWriter
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: jdk.internal.net.http.hpack.BulkSizeUpdateWriter
  super_class: java.lang.Object
{
  private final jdk.internal.net.http.hpack.SizeUpdateWriter writer;
    descriptor: Ljdk/internal/net/http/hpack/SizeUpdateWriter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.util.Iterator<java.lang.Integer> maxSizes;
    descriptor: Ljava/util/Iterator;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/Iterator<Ljava/lang/Integer;>;

  private boolean writing;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean configured;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.net.http.hpack.BulkSizeUpdateWriter this
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 34
            aload 0 /* this */
            new jdk.internal.net.http.hpack.SizeUpdateWriter
            dup
            invokespecial jdk.internal.net.http.hpack.SizeUpdateWriter.<init>:()V
            putfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.writer:Ljdk/internal/net/http/hpack/SizeUpdateWriter;
         2: .line 32
            return
        end local 0 // jdk.internal.net.http.hpack.BulkSizeUpdateWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/net/http/hpack/BulkSizeUpdateWriter;

  jdk.internal.net.http.hpack.BulkSizeUpdateWriter maxHeaderTableSizes(java.lang.Iterable<java.lang.Integer>);
    descriptor: (Ljava/lang/Iterable;)Ljdk/internal/net/http/hpack/BulkSizeUpdateWriter;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.net.http.hpack.BulkSizeUpdateWriter this
        start local 1 // java.lang.Iterable sizes
         0: .line 40
            aload 0 /* this */
            getfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.configured:Z
            ifeq 2
         1: .line 41
            new java.lang.IllegalStateException
            dup
            ldc "Already configured"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 43
      StackMap locals:
      StackMap stack:
            aload 1 /* sizes */
            ldc "sizes"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 44
            aload 0 /* this */
            aload 1 /* sizes */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            putfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.maxSizes:Ljava/util/Iterator;
         4: .line 45
            aload 0 /* this */
            iconst_1
            putfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.configured:Z
         5: .line 46
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Iterable sizes
        end local 0 // jdk.internal.net.http.hpack.BulkSizeUpdateWriter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljdk/internal/net/http/hpack/BulkSizeUpdateWriter;
            0    6     1  sizes  Ljava/lang/Iterable<Ljava/lang/Integer;>;
    Signature: (Ljava/lang/Iterable<Ljava/lang/Integer;>;)Ljdk/internal/net/http/hpack/BulkSizeUpdateWriter;
    MethodParameters:
       Name  Flags
      sizes  

  public boolean write(jdk.internal.net.http.hpack.HeaderTable, java.nio.ByteBuffer);
    descriptor: (Ljdk/internal/net/http/hpack/HeaderTable;Ljava/nio/ByteBuffer;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // jdk.internal.net.http.hpack.BulkSizeUpdateWriter this
        start local 1 // jdk.internal.net.http.hpack.HeaderTable table
        start local 2 // java.nio.ByteBuffer destination
         0: .line 51
            aload 0 /* this */
            getfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.configured:Z
            ifne 2
         1: .line 52
            new java.lang.IllegalStateException
            dup
            ldc "Configure first"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 55
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.writing:Z
            ifeq 7
         3: .line 56
            aload 0 /* this */
            getfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.writer:Ljdk/internal/net/http/hpack/SizeUpdateWriter;
            aload 1 /* table */
            aload 2 /* destination */
            invokevirtual jdk.internal.net.http.hpack.SizeUpdateWriter.write:(Ljdk/internal/net/http/hpack/HeaderTable;Ljava/nio/ByteBuffer;)Z
            ifne 5
         4: .line 57
            iconst_0
            ireturn
         5: .line 59
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.writing:Z
         6: .line 60
            goto 2
      StackMap locals:
      StackMap stack:
         7: aload 0 /* this */
            getfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.maxSizes:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.hasNext:()Z
            ifeq 12
         8: .line 61
            aload 0 /* this */
            iconst_1
            putfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.writing:Z
         9: .line 62
            aload 0 /* this */
            getfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.writer:Ljdk/internal/net/http/hpack/SizeUpdateWriter;
            invokevirtual jdk.internal.net.http.hpack.SizeUpdateWriter.reset:()Ljdk/internal/net/http/hpack/BinaryRepresentationWriter;
            pop
        10: .line 63
            aload 0 /* this */
            getfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.writer:Ljdk/internal/net/http/hpack/SizeUpdateWriter;
            aload 0 /* this */
            getfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.maxSizes:Ljava/util/Iterator;
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual jdk.internal.net.http.hpack.SizeUpdateWriter.maxHeaderTableSize:(I)Ljdk/internal/net/http/hpack/SizeUpdateWriter;
            pop
        11: .line 64
            goto 2
        12: .line 65
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.configured:Z
        13: .line 66
            iconst_1
            ireturn
        end local 2 // java.nio.ByteBuffer destination
        end local 1 // jdk.internal.net.http.hpack.HeaderTable table
        end local 0 // jdk.internal.net.http.hpack.BulkSizeUpdateWriter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Ljdk/internal/net/http/hpack/BulkSizeUpdateWriter;
            0   14     1        table  Ljdk/internal/net/http/hpack/HeaderTable;
            0   14     2  destination  Ljava/nio/ByteBuffer;
    MethodParameters:
             Name  Flags
      table        
      destination  

  public jdk.internal.net.http.hpack.BulkSizeUpdateWriter reset();
    descriptor: ()Ljdk/internal/net/http/hpack/BulkSizeUpdateWriter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.net.http.hpack.BulkSizeUpdateWriter this
         0: .line 73
            aload 0 /* this */
            aconst_null
            putfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.maxSizes:Ljava/util/Iterator;
         1: .line 74
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.writing:Z
         2: .line 75
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.net.http.hpack.BulkSizeUpdateWriter.configured:Z
         3: .line 76
            aload 0 /* this */
            areturn
        end local 0 // jdk.internal.net.http.hpack.BulkSizeUpdateWriter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/net/http/hpack/BulkSizeUpdateWriter;

  public jdk.internal.net.http.hpack.BinaryRepresentationWriter reset();
    descriptor: ()Ljdk/internal/net/http/hpack/BinaryRepresentationWriter;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual jdk.internal.net.http.hpack.BulkSizeUpdateWriter.reset:()Ljdk/internal/net/http/hpack/BulkSizeUpdateWriter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "BulkSizeUpdateWriter.java"