public class jdk.internal.net.http.RequestPublishers$IterablePublisher implements java.net.http.HttpRequest$BodyPublisher
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: jdk.internal.net.http.RequestPublishers$IterablePublisher
  super_class: java.lang.Object
{
  private final java.lang.Iterable<byte[]> content;
    descriptor: Ljava/lang/Iterable;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Iterable<[B>;

  private volatile long contentLength;
    descriptor: J
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  public void <init>(java.lang.Iterable<byte[]>);
    descriptor: (Ljava/lang/Iterable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.net.http.RequestPublishers$IterablePublisher this
        start local 1 // java.lang.Iterable content
         0: .line 116
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 117
            aload 0 /* this */
            aload 1 /* content */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Iterable
            putfield jdk.internal.net.http.RequestPublishers$IterablePublisher.content:Ljava/lang/Iterable;
         2: .line 118
            return
        end local 1 // java.lang.Iterable content
        end local 0 // jdk.internal.net.http.RequestPublishers$IterablePublisher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Ljdk/internal/net/http/RequestPublishers$IterablePublisher;
            0    3     1  content  Ljava/lang/Iterable<[B>;
    Signature: (Ljava/lang/Iterable<[B>;)V
    MethodParameters:
         Name  Flags
      content  

  public java.util.Iterator<java.nio.ByteBuffer> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.net.http.RequestPublishers$IterablePublisher this
         0: .line 169
            new jdk.internal.net.http.RequestPublishers$IterablePublisher$ByteBufferIterator
            dup
            aload 0 /* this */
            invokespecial jdk.internal.net.http.RequestPublishers$IterablePublisher$ByteBufferIterator.<init>:(Ljdk/internal/net/http/RequestPublishers$IterablePublisher;)V
            areturn
        end local 0 // jdk.internal.net.http.RequestPublishers$IterablePublisher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/net/http/RequestPublishers$IterablePublisher;
    Signature: ()Ljava/util/Iterator<Ljava/nio/ByteBuffer;>;

  public void subscribe(java.util.concurrent.Flow$Subscriber<? super java.nio.ByteBuffer>);
    descriptor: (Ljava/util/concurrent/Flow$Subscriber;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // jdk.internal.net.http.RequestPublishers$IterablePublisher this
        start local 1 // java.util.concurrent.Flow$Subscriber subscriber
         0: .line 174
            aload 0 /* this */
            invokedynamic iterator(Ljdk/internal/net/http/RequestPublishers$IterablePublisher;)Ljava/lang/Iterable;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  ()Ljava/util/Iterator;
                  jdk/internal/net/http/RequestPublishers$IterablePublisher.iterator()Ljava/util/Iterator; (5)
                  ()Ljava/util/Iterator;
            astore 2 /* iterable */
        start local 2 // java.lang.Iterable iterable
         1: .line 175
            new jdk.internal.net.http.PullPublisher
            dup
            aload 2 /* iterable */
            invokespecial jdk.internal.net.http.PullPublisher.<init>:(Ljava/lang/Iterable;)V
            astore 4 /* delegate */
        start local 4 // jdk.internal.net.http.PullPublisher delegate
         2: .line 176
            aload 4 /* delegate */
            aload 1 /* subscriber */
            invokevirtual jdk.internal.net.http.PullPublisher.subscribe:(Ljava/util/concurrent/Flow$Subscriber;)V
         3: .line 177
            return
        end local 4 // jdk.internal.net.http.PullPublisher delegate
        end local 2 // java.lang.Iterable iterable
        end local 1 // java.util.concurrent.Flow$Subscriber subscriber
        end local 0 // jdk.internal.net.http.RequestPublishers$IterablePublisher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Ljdk/internal/net/http/RequestPublishers$IterablePublisher;
            0    4     1  subscriber  Ljava/util/concurrent/Flow$Subscriber<-Ljava/nio/ByteBuffer;>;
            1    4     2    iterable  Ljava/lang/Iterable<Ljava/nio/ByteBuffer;>;
            2    4     4    delegate  Ljdk/internal/net/http/PullPublisher<Ljava/nio/ByteBuffer;>;
    Signature: (Ljava/util/concurrent/Flow$Subscriber<-Ljava/nio/ByteBuffer;>;)V
    MethodParameters:
            Name  Flags
      subscriber  

  static long computeLength(java.lang.Iterable<byte[]>);
    descriptor: (Ljava/lang/Iterable;)J
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // java.lang.Iterable bytes
         0: .line 180
            lconst_0
            lstore 1 /* len */
        start local 1 // long len
         1: .line 181
            aload 0 /* bytes */
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: java.lang.Iterable long top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast byte[]
            astore 3 /* b */
        start local 3 // byte[] b
         3: .line 182
            lload 1 /* len */
            aload 3 /* b */
            arraylength
            i2l
            invokestatic java.lang.Math.addExact:(JJ)J
            lstore 1 /* len */
        end local 3 // byte[] b
         4: .line 181
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 184
            lload 1 /* len */
            lreturn
        end local 1 // long len
        end local 0 // java.lang.Iterable bytes
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0  bytes  Ljava/lang/Iterable<[B>;
            1    6     1    len  J
            3    4     3      b  [B
    Signature: (Ljava/lang/Iterable<[B>;)J
    MethodParameters:
       Name  Flags
      bytes  

  public long contentLength();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // jdk.internal.net.http.RequestPublishers$IterablePublisher this
         0: .line 189
            aload 0 /* this */
            getfield jdk.internal.net.http.RequestPublishers$IterablePublisher.contentLength:J
            lconst_0
            lcmp
            ifne 8
         1: .line 190
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         2: .line 191
            aload 0 /* this */
            getfield jdk.internal.net.http.RequestPublishers$IterablePublisher.contentLength:J
            lconst_0
            lcmp
            ifne 4
         3: .line 192
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.internal.net.http.RequestPublishers$IterablePublisher.content:Ljava/lang/Iterable;
            invokestatic jdk.internal.net.http.RequestPublishers$IterablePublisher.computeLength:(Ljava/lang/Iterable;)J
            putfield jdk.internal.net.http.RequestPublishers$IterablePublisher.contentLength:J
         4: .line 190
      StackMap locals: jdk.internal.net.http.RequestPublishers$IterablePublisher
      StackMap stack:
            aload 1
            monitorexit
         5: goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.net.http.RequestPublishers$IterablePublisher.contentLength:J
            lreturn
        end local 0 // jdk.internal.net.http.RequestPublishers$IterablePublisher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljdk/internal/net/http/RequestPublishers$IterablePublisher;
      Exception table:
        from    to  target  type
           2     5       6  any
           6     7       6  any
}
SourceFile: "RequestPublishers.java"
NestHost: jdk.internal.net.http.RequestPublishers
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract BodyPublisher = java.net.http.HttpRequest$BodyPublisher of java.net.http.HttpRequest
  public abstract Subscriber = java.util.concurrent.Flow$Subscriber of java.util.concurrent.Flow
  public IterablePublisher = jdk.internal.net.http.RequestPublishers$IterablePublisher of jdk.internal.net.http.RequestPublishers
  ByteBufferIterator = jdk.internal.net.http.RequestPublishers$IterablePublisher$ByteBufferIterator of jdk.internal.net.http.RequestPublishers$IterablePublisher