abstract class jdk.incubator.http.HttpConnection implements java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: jdk.incubator.http.HttpConnection
  super_class: java.lang.Object
{
  protected jdk.incubator.http.HttpConnection$Mode mode;
    descriptor: Ljdk/incubator/http/HttpConnection$Mode;
    flags: (0x0004) ACC_PROTECTED

  final java.net.InetSocketAddress address;
    descriptor: Ljava/net/InetSocketAddress;
    flags: (0x0010) ACC_FINAL

  final jdk.incubator.http.HttpClientImpl client;
    descriptor: Ljdk/incubator/http/HttpClientImpl;
    flags: (0x0010) ACC_FINAL

  void <init>(java.net.InetSocketAddress, jdk.incubator.http.HttpClientImpl);
    descriptor: (Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // jdk.incubator.http.HttpConnection this
        start local 1 // java.net.InetSocketAddress address
        start local 2 // jdk.incubator.http.HttpClientImpl client
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 64
            aload 0 /* this */
            aload 1 /* address */
            putfield jdk.incubator.http.HttpConnection.address:Ljava/net/InetSocketAddress;
         2: .line 65
            aload 0 /* this */
            aload 2 /* client */
            putfield jdk.incubator.http.HttpConnection.client:Ljdk/incubator/http/HttpClientImpl;
         3: .line 66
            return
        end local 2 // jdk.incubator.http.HttpClientImpl client
        end local 1 // java.net.InetSocketAddress address
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Ljdk/incubator/http/HttpConnection;
            0    4     1  address  Ljava/net/InetSocketAddress;
            0    4     2   client  Ljdk/incubator/http/HttpClientImpl;
    MethodParameters:
         Name  Flags
      address  
      client   

  public static jdk.incubator.http.HttpConnection getConnection(java.net.InetSocketAddress, jdk.incubator.http.HttpClientImpl, jdk.incubator.http.HttpRequestImpl);
    descriptor: (Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/HttpRequestImpl;)Ljdk/incubator/http/HttpConnection;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.net.InetSocketAddress addr
        start local 1 // jdk.incubator.http.HttpClientImpl client
        start local 2 // jdk.incubator.http.HttpRequestImpl request
         0: .line 83
            aload 0 /* addr */
            aload 1 /* client */
            aload 2 /* request */
            iconst_0
            invokestatic jdk.incubator.http.HttpConnection.getConnectionImpl:(Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/HttpRequestImpl;Z)Ljdk/incubator/http/HttpConnection;
            areturn
        end local 2 // jdk.incubator.http.HttpRequestImpl request
        end local 1 // jdk.incubator.http.HttpClientImpl client
        end local 0 // java.net.InetSocketAddress addr
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     addr  Ljava/net/InetSocketAddress;
            0    1     1   client  Ljdk/incubator/http/HttpClientImpl;
            0    1     2  request  Ljdk/incubator/http/HttpRequestImpl;
    MethodParameters:
         Name  Flags
      addr     
      client   
      request  

  public static jdk.incubator.http.HttpConnection getConnection(java.net.InetSocketAddress, jdk.incubator.http.HttpClientImpl, jdk.incubator.http.HttpRequestImpl, boolean);
    descriptor: (Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/HttpRequestImpl;Z)Ljdk/incubator/http/HttpConnection;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.net.InetSocketAddress addr
        start local 1 // jdk.incubator.http.HttpClientImpl client
        start local 2 // jdk.incubator.http.HttpRequestImpl request
        start local 3 // boolean isHttp2
         0: .line 92
            aload 0 /* addr */
            aload 1 /* client */
            aload 2 /* request */
            iload 3 /* isHttp2 */
            invokestatic jdk.incubator.http.HttpConnection.getConnectionImpl:(Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/HttpRequestImpl;Z)Ljdk/incubator/http/HttpConnection;
            areturn
        end local 3 // boolean isHttp2
        end local 2 // jdk.incubator.http.HttpRequestImpl request
        end local 1 // jdk.incubator.http.HttpClientImpl client
        end local 0 // java.net.InetSocketAddress addr
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     addr  Ljava/net/InetSocketAddress;
            0    1     1   client  Ljdk/incubator/http/HttpClientImpl;
            0    1     2  request  Ljdk/incubator/http/HttpRequestImpl;
            0    1     3  isHttp2  Z
    MethodParameters:
         Name  Flags
      addr     
      client   
      request  
      isHttp2  

  public abstract void connect();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException, java.lang.InterruptedException

  public abstract java.util.concurrent.CompletableFuture<java.lang.Void> connectAsync();
    descriptor: ()Ljava/util/concurrent/CompletableFuture;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: ()Ljava/util/concurrent/CompletableFuture<Ljava/lang/Void;>;

  abstract boolean connected();
    descriptor: ()Z
    flags: (0x0400) ACC_ABSTRACT

  abstract boolean isSecure();
    descriptor: ()Z
    flags: (0x0400) ACC_ABSTRACT

  abstract boolean isProxied();
    descriptor: ()Z
    flags: (0x0400) ACC_ABSTRACT

  abstract java.util.concurrent.CompletableFuture<java.lang.Void> whenReceivingResponse();
    descriptor: ()Ljava/util/concurrent/CompletableFuture;
    flags: (0x0400) ACC_ABSTRACT
    Signature: ()Ljava/util/concurrent/CompletableFuture<Ljava/lang/Void;>;

  final boolean isOpen();
    descriptor: ()Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.incubator.http.HttpConnection this
         0: .line 114
            aload 0 /* this */
            invokevirtual jdk.incubator.http.HttpConnection.channel:()Ljava/nio/channels/SocketChannel;
            invokevirtual java.nio.channels.SocketChannel.isOpen:()Z
            ireturn
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/HttpConnection;

  private static jdk.incubator.http.HttpConnection getPlainConnection(java.net.InetSocketAddress, java.net.InetSocketAddress, jdk.incubator.http.HttpRequestImpl, jdk.incubator.http.HttpClientImpl);
    descriptor: (Ljava/net/InetSocketAddress;Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpRequestImpl;Ljdk/incubator/http/HttpClientImpl;)Ljdk/incubator/http/HttpConnection;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // java.net.InetSocketAddress addr
        start local 1 // java.net.InetSocketAddress proxy
        start local 2 // jdk.incubator.http.HttpRequestImpl request
        start local 3 // jdk.incubator.http.HttpClientImpl client
         0: .line 123
            aload 2 /* request */
            invokevirtual jdk.incubator.http.HttpRequestImpl.isWebSocket:()Z
            ifeq 2
            aload 1 /* proxy */
            ifnull 2
         1: .line 124
            new jdk.incubator.http.PlainTunnelingConnection
            dup
            aload 0 /* addr */
            aload 1 /* proxy */
            aload 3 /* client */
            invokespecial jdk.incubator.http.PlainTunnelingConnection.<init>:(Ljava/net/InetSocketAddress;Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;)V
            areturn
         2: .line 126
      StackMap locals:
      StackMap stack:
            aload 1 /* proxy */
            ifnonnull 4
         3: .line 127
            new jdk.incubator.http.PlainHttpConnection
            dup
            aload 0 /* addr */
            aload 3 /* client */
            invokespecial jdk.incubator.http.PlainHttpConnection.<init>:(Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;)V
            areturn
         4: .line 129
      StackMap locals:
      StackMap stack:
            new jdk.incubator.http.PlainProxyConnection
            dup
            aload 1 /* proxy */
            aload 3 /* client */
            invokespecial jdk.incubator.http.PlainProxyConnection.<init>:(Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;)V
            areturn
        end local 3 // jdk.incubator.http.HttpClientImpl client
        end local 2 // jdk.incubator.http.HttpRequestImpl request
        end local 1 // java.net.InetSocketAddress proxy
        end local 0 // java.net.InetSocketAddress addr
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     addr  Ljava/net/InetSocketAddress;
            0    5     1    proxy  Ljava/net/InetSocketAddress;
            0    5     2  request  Ljdk/incubator/http/HttpRequestImpl;
            0    5     3   client  Ljdk/incubator/http/HttpClientImpl;
    MethodParameters:
         Name  Flags
      addr     
      proxy    
      request  
      client   

  private static jdk.incubator.http.HttpConnection getSSLConnection(java.net.InetSocketAddress, java.net.InetSocketAddress, jdk.incubator.http.HttpRequestImpl, java.lang.String[], boolean, jdk.incubator.http.HttpClientImpl);
    descriptor: (Ljava/net/InetSocketAddress;Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpRequestImpl;[Ljava/lang/String;ZLjdk/incubator/http/HttpClientImpl;)Ljdk/incubator/http/HttpConnection;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // java.net.InetSocketAddress addr
        start local 1 // java.net.InetSocketAddress proxy
        start local 2 // jdk.incubator.http.HttpRequestImpl request
        start local 3 // java.lang.String[] alpn
        start local 4 // boolean isHttp2
        start local 5 // jdk.incubator.http.HttpClientImpl client
         0: .line 138
            aload 1 /* proxy */
            ifnull 2
         1: .line 139
            new jdk.incubator.http.SSLTunnelConnection
            dup
            aload 0 /* addr */
            aload 5 /* client */
            aload 1 /* proxy */
            invokespecial jdk.incubator.http.SSLTunnelConnection.<init>:(Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;Ljava/net/InetSocketAddress;)V
            areturn
         2: .line 140
      StackMap locals:
      StackMap stack:
            iload 4 /* isHttp2 */
            ifne 4
         3: .line 141
            new jdk.incubator.http.SSLConnection
            dup
            aload 0 /* addr */
            aload 5 /* client */
            aload 3 /* alpn */
            invokespecial jdk.incubator.http.SSLConnection.<init>:(Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;[Ljava/lang/String;)V
            areturn
         4: .line 143
      StackMap locals:
      StackMap stack:
            new jdk.incubator.http.AsyncSSLConnection
            dup
            aload 0 /* addr */
            aload 5 /* client */
            aload 3 /* alpn */
            invokespecial jdk.incubator.http.AsyncSSLConnection.<init>:(Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;[Ljava/lang/String;)V
            areturn
        end local 5 // jdk.incubator.http.HttpClientImpl client
        end local 4 // boolean isHttp2
        end local 3 // java.lang.String[] alpn
        end local 2 // jdk.incubator.http.HttpRequestImpl request
        end local 1 // java.net.InetSocketAddress proxy
        end local 0 // java.net.InetSocketAddress addr
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     addr  Ljava/net/InetSocketAddress;
            0    5     1    proxy  Ljava/net/InetSocketAddress;
            0    5     2  request  Ljdk/incubator/http/HttpRequestImpl;
            0    5     3     alpn  [Ljava/lang/String;
            0    5     4  isHttp2  Z
            0    5     5   client  Ljdk/incubator/http/HttpClientImpl;
    MethodParameters:
         Name  Flags
      addr     
      proxy    
      request  
      alpn     
      isHttp2  
      client   

  private static jdk.incubator.http.HttpConnection getConnectionImpl(java.net.InetSocketAddress, jdk.incubator.http.HttpClientImpl, jdk.incubator.http.HttpRequestImpl, boolean);
    descriptor: (Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpClientImpl;Ljdk/incubator/http/HttpRequestImpl;Z)Ljdk/incubator/http/HttpConnection;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=9, args_size=4
        start local 0 // java.net.InetSocketAddress addr
        start local 1 // jdk.incubator.http.HttpClientImpl client
        start local 2 // jdk.incubator.http.HttpRequestImpl request
        start local 3 // boolean isHttp2
         0: .line 155
            aconst_null
            astore 4 /* c */
        start local 4 // jdk.incubator.http.HttpConnection c
         1: .line 156
            aload 2 /* request */
            aload 1 /* client */
            invokevirtual jdk.incubator.http.HttpRequestImpl.proxy:(Ljdk/incubator/http/HttpClientImpl;)Ljava/net/InetSocketAddress;
            astore 5 /* proxy */
        start local 5 // java.net.InetSocketAddress proxy
         2: .line 157
            aload 2 /* request */
            invokevirtual jdk.incubator.http.HttpRequestImpl.secure:()Z
            istore 6 /* secure */
        start local 6 // boolean secure
         3: .line 158
            aload 1 /* client */
            invokevirtual jdk.incubator.http.HttpClientImpl.connectionPool:()Ljdk/incubator/http/ConnectionPool;
            astore 7 /* pool */
        start local 7 // jdk.incubator.http.ConnectionPool pool
         4: .line 159
            aconst_null
            astore 8 /* alpn */
        start local 8 // java.lang.String[] alpn
         5: .line 161
            iload 6 /* secure */
            ifeq 9
            iload 3 /* isHttp2 */
            ifeq 9
         6: .line 162
            iconst_2
            anewarray java.lang.String
            astore 8 /* alpn */
         7: .line 163
            aload 8 /* alpn */
            iconst_0
            ldc "h2"
            aastore
         8: .line 164
            aload 8 /* alpn */
            iconst_1
            ldc "http/1.1"
            aastore
         9: .line 167
      StackMap locals: java.net.InetSocketAddress jdk.incubator.http.HttpClientImpl jdk.incubator.http.HttpRequestImpl int jdk.incubator.http.HttpConnection java.net.InetSocketAddress int jdk.incubator.http.ConnectionPool java.lang.String[]
      StackMap stack:
            iload 6 /* secure */
            ifne 14
        10: .line 168
            aload 7 /* pool */
            iconst_0
            aload 0 /* addr */
            aload 5 /* proxy */
            invokevirtual jdk.incubator.http.ConnectionPool.getConnection:(ZLjava/net/InetSocketAddress;Ljava/net/InetSocketAddress;)Ljdk/incubator/http/HttpConnection;
            astore 4 /* c */
        11: .line 169
            aload 4 /* c */
            ifnull 13
        12: .line 170
            aload 4 /* c */
            areturn
        13: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* addr */
            aload 5 /* proxy */
            aload 2 /* request */
            aload 1 /* client */
            invokestatic jdk.incubator.http.HttpConnection.getPlainConnection:(Ljava/net/InetSocketAddress;Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpRequestImpl;Ljdk/incubator/http/HttpClientImpl;)Ljdk/incubator/http/HttpConnection;
            areturn
        14: .line 175
      StackMap locals:
      StackMap stack:
            iload 3 /* isHttp2 */
            ifne 16
        15: .line 176
            aload 7 /* pool */
            iconst_1
            aload 0 /* addr */
            aload 5 /* proxy */
            invokevirtual jdk.incubator.http.ConnectionPool.getConnection:(ZLjava/net/InetSocketAddress;Ljava/net/InetSocketAddress;)Ljdk/incubator/http/HttpConnection;
            astore 4 /* c */
        16: .line 178
      StackMap locals:
      StackMap stack:
            aload 4 /* c */
            ifnull 18
        17: .line 179
            aload 4 /* c */
            areturn
        18: .line 181
      StackMap locals:
      StackMap stack:
            aload 0 /* addr */
            aload 5 /* proxy */
            aload 2 /* request */
            aload 8 /* alpn */
            iload 3 /* isHttp2 */
            aload 1 /* client */
            invokestatic jdk.incubator.http.HttpConnection.getSSLConnection:(Ljava/net/InetSocketAddress;Ljava/net/InetSocketAddress;Ljdk/incubator/http/HttpRequestImpl;[Ljava/lang/String;ZLjdk/incubator/http/HttpClientImpl;)Ljdk/incubator/http/HttpConnection;
            areturn
        end local 8 // java.lang.String[] alpn
        end local 7 // jdk.incubator.http.ConnectionPool pool
        end local 6 // boolean secure
        end local 5 // java.net.InetSocketAddress proxy
        end local 4 // jdk.incubator.http.HttpConnection c
        end local 3 // boolean isHttp2
        end local 2 // jdk.incubator.http.HttpRequestImpl request
        end local 1 // jdk.incubator.http.HttpClientImpl client
        end local 0 // java.net.InetSocketAddress addr
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   19     0     addr  Ljava/net/InetSocketAddress;
            0   19     1   client  Ljdk/incubator/http/HttpClientImpl;
            0   19     2  request  Ljdk/incubator/http/HttpRequestImpl;
            0   19     3  isHttp2  Z
            1   19     4        c  Ljdk/incubator/http/HttpConnection;
            2   19     5    proxy  Ljava/net/InetSocketAddress;
            3   19     6   secure  Z
            4   19     7     pool  Ljdk/incubator/http/ConnectionPool;
            5   19     8     alpn  [Ljava/lang/String;
    MethodParameters:
         Name  Flags
      addr     
      client   
      request  
      isHttp2  

  void returnToCache(jdk.incubator.http.HttpHeaders);
    descriptor: (Ljdk/incubator/http/HttpHeaders;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // jdk.incubator.http.HttpConnection this
        start local 1 // jdk.incubator.http.HttpHeaders hdrs
         0: .line 187
            aload 1 /* hdrs */
            ifnonnull 3
         1: .line 189
            aload 0 /* this */
            invokevirtual jdk.incubator.http.HttpConnection.close:()V
         2: .line 190
            return
         3: .line 192
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.incubator.http.HttpConnection.isOpen:()Z
            ifne 5
         4: .line 193
            return
         5: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.incubator.http.HttpConnection.client:Ljdk/incubator/http/HttpClientImpl;
            invokevirtual jdk.incubator.http.HttpClientImpl.connectionPool:()Ljdk/incubator/http/ConnectionPool;
            astore 2 /* pool */
        start local 2 // jdk.incubator.http.ConnectionPool pool
         6: .line 196
            aload 1 /* hdrs */
            ldc "Connection"
            invokeinterface jdk.incubator.http.HttpHeaders.firstValue:(Ljava/lang/String;)Ljava/util/Optional;
         7: .line 197
            invokedynamic apply()Ljava/util/function/Function;
              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/lang/Object;)Ljava/lang/Object;
                  jdk/incubator/http/HttpConnection.lambda$0(Ljava/lang/String;)Ljava/lang/Boolean; (6)
                  (Ljava/lang/String;)Ljava/lang/Boolean;
            invokevirtual java.util.Optional.map:(Ljava/util/function/Function;)Ljava/util/Optional;
         8: .line 198
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokevirtual java.util.Optional.orElse:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
         9: .line 196
            istore 3 /* keepAlive */
        start local 3 // boolean keepAlive
        10: .line 200
            iload 3 /* keepAlive */
            ifeq 13
        11: .line 201
            aload 2 /* pool */
            aload 0 /* this */
            invokevirtual jdk.incubator.http.ConnectionPool.returnToPool:(Ljdk/incubator/http/HttpConnection;)V
        12: .line 202
            goto 14
        13: .line 203
      StackMap locals: jdk.incubator.http.ConnectionPool int
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.incubator.http.HttpConnection.close:()V
        14: .line 205
      StackMap locals:
      StackMap stack:
            return
        end local 3 // boolean keepAlive
        end local 2 // jdk.incubator.http.ConnectionPool pool
        end local 1 // jdk.incubator.http.HttpHeaders hdrs
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Ljdk/incubator/http/HttpConnection;
            0   15     1       hdrs  Ljdk/incubator/http/HttpHeaders;
            6   15     2       pool  Ljdk/incubator/http/ConnectionPool;
           10   15     3  keepAlive  Z
    MethodParameters:
      Name  Flags
      hdrs  

  final void checkWrite(long, java.nio.ByteBuffer);
    descriptor: (JLjava/nio/ByteBuffer;)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // jdk.incubator.http.HttpConnection this
        start local 1 // long expected
        start local 3 // java.nio.ByteBuffer buffer
         0: .line 213
            aload 0 /* this */
            aload 3 /* buffer */
            invokevirtual jdk.incubator.http.HttpConnection.write:(Ljava/nio/ByteBuffer;)J
            lstore 4 /* written */
        start local 4 // long written
         1: .line 214
            lload 4 /* written */
            lload 1 /* expected */
            lcmp
            ifeq 3
         2: .line 215
            new java.io.IOException
            dup
            ldc "incorrect number of bytes written"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 217
      StackMap locals: long
      StackMap stack:
            return
        end local 4 // long written
        end local 3 // java.nio.ByteBuffer buffer
        end local 1 // long expected
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Ljdk/incubator/http/HttpConnection;
            0    4     1  expected  J
            0    4     3    buffer  Ljava/nio/ByteBuffer;
            1    4     4   written  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      expected  
      buffer    

  final void checkWrite(long, java.nio.ByteBuffer[], int, int);
    descriptor: (J[Ljava/nio/ByteBuffer;II)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=8, args_size=5
        start local 0 // jdk.incubator.http.HttpConnection this
        start local 1 // long expected
        start local 3 // java.nio.ByteBuffer[] buffers
        start local 4 // int start
        start local 5 // int length
         0: .line 225
            aload 0 /* this */
            aload 3 /* buffers */
            iload 4 /* start */
            iload 5 /* length */
            invokevirtual jdk.incubator.http.HttpConnection.write:([Ljava/nio/ByteBuffer;II)J
            lstore 6 /* written */
        start local 6 // long written
         1: .line 226
            lload 6 /* written */
            lload 1 /* expected */
            lcmp
            ifeq 3
         2: .line 227
            new java.io.IOException
            dup
            ldc "incorrect number of bytes written"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 229
      StackMap locals: long
      StackMap stack:
            return
        end local 6 // long written
        end local 5 // int length
        end local 4 // int start
        end local 3 // java.nio.ByteBuffer[] buffers
        end local 1 // long expected
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Ljdk/incubator/http/HttpConnection;
            0    4     1  expected  J
            0    4     3   buffers  [Ljava/nio/ByteBuffer;
            0    4     4     start  I
            0    4     5    length  I
            1    4     6   written  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      expected  
      buffers   
      start     
      length    

  abstract java.nio.channels.SocketChannel channel();
    descriptor: ()Ljava/nio/channels/SocketChannel;
    flags: (0x0400) ACC_ABSTRACT

  final java.net.InetSocketAddress address();
    descriptor: ()Ljava/net/InetSocketAddress;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.incubator.http.HttpConnection this
         0: .line 234
            aload 0 /* this */
            getfield jdk.incubator.http.HttpConnection.address:Ljava/net/InetSocketAddress;
            areturn
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/HttpConnection;

  synchronized void configureMode(jdk.incubator.http.HttpConnection$Mode);
    descriptor: (Ljdk/incubator/http/HttpConnection$Mode;)V
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.incubator.http.HttpConnection this
        start local 1 // jdk.incubator.http.HttpConnection$Mode mode
         0: .line 238
            aload 0 /* this */
            aload 1 /* mode */
            putfield jdk.incubator.http.HttpConnection.mode:Ljdk/incubator/http/HttpConnection$Mode;
         1: .line 239
            aload 1 /* mode */
            getstatic jdk.incubator.http.HttpConnection$Mode.BLOCKING:Ljdk/incubator/http/HttpConnection$Mode;
            if_acmpne 4
         2: .line 240
            aload 0 /* this */
            invokevirtual jdk.incubator.http.HttpConnection.channel:()Ljava/nio/channels/SocketChannel;
            iconst_1
            invokevirtual java.nio.channels.SocketChannel.configureBlocking:(Z)Ljava/nio/channels/SelectableChannel;
            pop
         3: .line 241
            goto 5
         4: .line 242
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.incubator.http.HttpConnection.channel:()Ljava/nio/channels/SocketChannel;
            iconst_0
            invokevirtual java.nio.channels.SocketChannel.configureBlocking:(Z)Ljava/nio/channels/SelectableChannel;
            pop
         5: .line 244
      StackMap locals:
      StackMap stack:
            return
        end local 1 // jdk.incubator.http.HttpConnection$Mode mode
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljdk/incubator/http/HttpConnection;
            0    6     1  mode  Ljdk/incubator/http/HttpConnection$Mode;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      mode  

  synchronized jdk.incubator.http.HttpConnection$Mode getMode();
    descriptor: ()Ljdk/incubator/http/HttpConnection$Mode;
    flags: (0x0020) ACC_SYNCHRONIZED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.incubator.http.HttpConnection this
         0: .line 247
            aload 0 /* this */
            getfield jdk.incubator.http.HttpConnection.mode:Ljdk/incubator/http/HttpConnection$Mode;
            areturn
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/HttpConnection;

  abstract jdk.incubator.http.ConnectionPool$CacheKey cacheKey();
    descriptor: ()Ljdk/incubator/http/ConnectionPool$CacheKey;
    flags: (0x0400) ACC_ABSTRACT

  javax.net.ssl.SSLParameters sslParameters();
    descriptor: ()Ljavax/net/ssl/SSLParameters;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.incubator.http.HttpConnection this
         0: .line 254
            aconst_null
            areturn
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/HttpConnection;

  abstract long write(java.nio.ByteBuffer[], int, int);
    descriptor: ([Ljava/nio/ByteBuffer;II)J
    flags: (0x0400) ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      buffers  
      start    
      number   

  abstract long write(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)J
    flags: (0x0400) ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      buffer  

  abstract void writeAsync(jdk.incubator.http.internal.common.ByteBufferReference[]);
    descriptor: ([Ljdk/incubator/http/internal/common/ByteBufferReference;)V
    flags: (0x0400) ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      buffers  

  abstract void writeAsyncUnordered(jdk.incubator.http.internal.common.ByteBufferReference[]);
    descriptor: ([Ljdk/incubator/http/internal/common/ByteBufferReference;)V
    flags: (0x0400) ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      buffers  

  abstract void flushAsync();
    descriptor: ()V
    flags: (0x0400) ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public abstract void close();
    descriptor: ()V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  abstract void shutdownInput();
    descriptor: ()V
    flags: (0x0400) ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  abstract void shutdownOutput();
    descriptor: ()V
    flags: (0x0400) ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  static void resumeChannelRead(java.nio.ByteBuffer, int);
    descriptor: (Ljava/nio/ByteBuffer;I)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // java.nio.ByteBuffer buf
        start local 1 // int required
         0: .line 316
            aload 0 /* buf */
            invokevirtual java.nio.ByteBuffer.limit:()I
            istore 2 /* limit */
        start local 2 // int limit
         1: .line 317
            aload 0 /* buf */
            iload 2 /* limit */
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
         2: .line 318
            aload 0 /* buf */
            invokevirtual java.nio.ByteBuffer.capacity:()I
            iload 2 /* limit */
            isub
            istore 3 /* capacity */
        start local 3 // int capacity
         3: .line 319
            iload 1 /* required */
            ifle 6
            iload 1 /* required */
            iload 3 /* capacity */
            if_icmpge 6
         4: .line 320
            aload 0 /* buf */
            iload 2 /* limit */
            iload 1 /* required */
            iadd
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/ByteBuffer;
            pop
         5: .line 321
            goto 7
         6: .line 322
      StackMap locals: int int
      StackMap stack:
            aload 0 /* buf */
            aload 0 /* buf */
            invokevirtual java.nio.ByteBuffer.capacity:()I
            invokevirtual java.nio.ByteBuffer.limit:(I)Ljava/nio/ByteBuffer;
            pop
         7: .line 324
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int capacity
        end local 2 // int limit
        end local 1 // int required
        end local 0 // java.nio.ByteBuffer buf
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0       buf  Ljava/nio/ByteBuffer;
            0    8     1  required  I
            1    8     2     limit  I
            3    8     3  capacity  I
    MethodParameters:
          Name  Flags
      buf       
      required  

  final java.nio.ByteBuffer read();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // jdk.incubator.http.HttpConnection this
         0: .line 327
            aload 0 /* this */
            invokevirtual jdk.incubator.http.HttpConnection.readImpl:()Ljava/nio/ByteBuffer;
            astore 1 /* b */
        start local 1 // java.nio.ByteBuffer b
         1: .line 328
            aload 1 /* b */
            areturn
        end local 1 // java.nio.ByteBuffer b
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/incubator/http/HttpConnection;
            1    2     1     b  Ljava/nio/ByteBuffer;
    Exceptions:
      throws java.io.IOException

  protected abstract java.nio.ByteBuffer readImpl();
    descriptor: ()Ljava/nio/ByteBuffer;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Exceptions:
      throws java.io.IOException

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.incubator.http.HttpConnection this
         0: .line 339
            new java.lang.StringBuilder
            dup
            ldc "HttpConnection: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual jdk.incubator.http.HttpConnection.channel:()Ljava/nio/channels/SocketChannel;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // jdk.incubator.http.HttpConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/incubator/http/HttpConnection;

  private static java.lang.Boolean lambda$0(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Boolean;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String s
         0: .line 197
            aload 0 /* s */
            ldc "close"
            invokevirtual java.lang.String.equalsIgnoreCase:(Ljava/lang/String;)Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            areturn
        end local 0 // java.lang.String s
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     s  Ljava/lang/String;
}
SourceFile: "HttpConnection.java"
NestMembers:
  jdk.incubator.http.HttpConnection$Mode
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  CacheKey = jdk.incubator.http.ConnectionPool$CacheKey of jdk.incubator.http.ConnectionPool
  final Mode = jdk.incubator.http.HttpConnection$Mode of jdk.incubator.http.HttpConnection