public class jdk.internal.net.http.RequestPublishers$ByteArrayPublisher 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$ByteArrayPublisher
  super_class: java.lang.Object
{
  private final int length;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final byte[] content;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int offset;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int bufSize;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
        start local 1 // byte[] content
         0: .line 68
            aload 0 /* this */
            aload 1 /* content */
            iconst_0
            aload 1 /* content */
            arraylength
            invokespecial jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.<init>:([BII)V
         1: .line 69
            return
        end local 1 // byte[] content
        end local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Ljdk/internal/net/http/RequestPublishers$ByteArrayPublisher;
            0    2     1  content  [B
    MethodParameters:
         Name  Flags
      content  

  public void <init>(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
        start local 1 // byte[] content
        start local 2 // int offset
        start local 3 // int length
         0: .line 72
            aload 0 /* this */
            aload 1 /* content */
            iload 2 /* offset */
            iload 3 /* length */
            getstatic jdk.internal.net.http.common.Utils.BUFSIZE:I
            invokespecial jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.<init>:([BIII)V
         1: .line 73
            return
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] content
        end local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Ljdk/internal/net/http/RequestPublishers$ByteArrayPublisher;
            0    2     1  content  [B
            0    2     2   offset  I
            0    2     3   length  I
    MethodParameters:
         Name  Flags
      content  
      offset   
      length   

  void <init>(byte[], int, int, int);
    descriptor: ([BIII)V
    flags: (0x0000) 
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
        start local 1 // byte[] content
        start local 2 // int offset
        start local 3 // int length
        start local 4 // int bufSize
         0: .line 76
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 77
            aload 0 /* this */
            aload 1 /* content */
            putfield jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.content:[B
         2: .line 78
            aload 0 /* this */
            iload 2 /* offset */
            putfield jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.offset:I
         3: .line 79
            aload 0 /* this */
            iload 3 /* length */
            putfield jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.length:I
         4: .line 80
            aload 0 /* this */
            iload 4 /* bufSize */
            putfield jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.bufSize:I
         5: .line 81
            return
        end local 4 // int bufSize
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] content
        end local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0     this  Ljdk/internal/net/http/RequestPublishers$ByteArrayPublisher;
            0    6     1  content  [B
            0    6     2   offset  I
            0    6     3   length  I
            0    6     4  bufSize  I
    MethodParameters:
         Name  Flags
      content  
      offset   
      length   
      bufSize  

  java.util.List<java.nio.ByteBuffer> copy(byte[], int, int);
    descriptor: ([BII)Ljava/util/List;
    flags: (0x0000) 
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
        start local 1 // byte[] content
        start local 2 // int offset
        start local 3 // int length
         0: .line 84
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 4 /* bufs */
        start local 4 // java.util.List bufs
         1: .line 85
            goto 10
         2: .line 86
      StackMap locals: java.util.List
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.bufSize:I
            iload 3 /* length */
            invokestatic java.lang.Math.min:(II)I
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 5 /* b */
        start local 5 // java.nio.ByteBuffer b
         3: .line 87
            aload 5 /* b */
            invokevirtual java.nio.ByteBuffer.capacity:()I
            istore 6 /* max */
        start local 6 // int max
         4: .line 88
            iload 6 /* max */
            iload 3 /* length */
            invokestatic java.lang.Math.min:(II)I
            istore 7 /* tocopy */
        start local 7 // int tocopy
         5: .line 89
            aload 5 /* b */
            aload 1 /* content */
            iload 2 /* offset */
            iload 7 /* tocopy */
            invokevirtual java.nio.ByteBuffer.put:([BII)Ljava/nio/ByteBuffer;
            pop
         6: .line 90
            iload 2 /* offset */
            iload 7 /* tocopy */
            iadd
            istore 2 /* offset */
         7: .line 91
            iload 3 /* length */
            iload 7 /* tocopy */
            isub
            istore 3 /* length */
         8: .line 92
            aload 5 /* b */
            invokevirtual java.nio.ByteBuffer.flip:()Ljava/nio/ByteBuffer;
            pop
         9: .line 93
            aload 4 /* bufs */
            aload 5 /* b */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 7 // int tocopy
        end local 6 // int max
        end local 5 // java.nio.ByteBuffer b
        10: .line 85
      StackMap locals:
      StackMap stack:
            iload 3 /* length */
            ifgt 2
        11: .line 95
            aload 4 /* bufs */
            areturn
        end local 4 // java.util.List bufs
        end local 3 // int length
        end local 2 // int offset
        end local 1 // byte[] content
        end local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Ljdk/internal/net/http/RequestPublishers$ByteArrayPublisher;
            0   12     1  content  [B
            0   12     2   offset  I
            0   12     3   length  I
            1   12     4     bufs  Ljava/util/List<Ljava/nio/ByteBuffer;>;
            3   10     5        b  Ljava/nio/ByteBuffer;
            4   10     6      max  I
            5   10     7   tocopy  I
    Signature: ([BII)Ljava/util/List<Ljava/nio/ByteBuffer;>;
    MethodParameters:
         Name  Flags
      content  
      offset   
      length   

  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=4, locals=4, args_size=2
        start local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
        start local 1 // java.util.concurrent.Flow$Subscriber subscriber
         0: .line 100
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.content:[B
            aload 0 /* this */
            getfield jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.offset:I
            aload 0 /* this */
            getfield jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.length:I
            invokevirtual jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.copy:([BII)Ljava/util/List;
            astore 2 /* copy */
        start local 2 // java.util.List copy
         1: .line 101
            new jdk.internal.net.http.PullPublisher
            dup
            aload 2 /* copy */
            invokespecial jdk.internal.net.http.PullPublisher.<init>:(Ljava/lang/Iterable;)V
            astore 3 /* delegate */
        start local 3 // jdk.internal.net.http.PullPublisher delegate
         2: .line 102
            aload 3 /* delegate */
            aload 1 /* subscriber */
            invokevirtual jdk.internal.net.http.PullPublisher.subscribe:(Ljava/util/concurrent/Flow$Subscriber;)V
         3: .line 103
            return
        end local 3 // jdk.internal.net.http.PullPublisher delegate
        end local 2 // java.util.List copy
        end local 1 // java.util.concurrent.Flow$Subscriber subscriber
        end local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Ljdk/internal/net/http/RequestPublishers$ByteArrayPublisher;
            0    4     1  subscriber  Ljava/util/concurrent/Flow$Subscriber<-Ljava/nio/ByteBuffer;>;
            1    4     2        copy  Ljava/util/List<Ljava/nio/ByteBuffer;>;
            2    4     3    delegate  Ljdk/internal/net/http/PullPublisher<Ljava/nio/ByteBuffer;>;
    Signature: (Ljava/util/concurrent/Flow$Subscriber<-Ljava/nio/ByteBuffer;>;)V
    MethodParameters:
            Name  Flags
      subscriber  

  public long contentLength();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
         0: .line 107
            aload 0 /* this */
            getfield jdk.internal.net.http.RequestPublishers$ByteArrayPublisher.length:I
            i2l
            lreturn
        end local 0 // jdk.internal.net.http.RequestPublishers$ByteArrayPublisher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/net/http/RequestPublishers$ByteArrayPublisher;
}
SourceFile: "RequestPublishers.java"
NestHost: jdk.internal.net.http.RequestPublishers
InnerClasses:
  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 ByteArrayPublisher = jdk.internal.net.http.RequestPublishers$ByteArrayPublisher of jdk.internal.net.http.RequestPublishers