public class io.vertx.core.net.impl.NetClientImpl implements io.vertx.core.spi.metrics.MetricsProvider, io.vertx.core.net.NetClient, io.vertx.core.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.core.net.impl.NetClientImpl
  super_class: java.lang.Object
{
  private static final io.vertx.core.impl.logging.Logger log;
    descriptor: Lio/vertx/core/impl/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  protected final int idleTimeout;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  private final java.util.concurrent.TimeUnit idleTimeoutUnit;
    descriptor: Ljava/util/concurrent/TimeUnit;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected final boolean logEnabled;
    descriptor: Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  private final io.vertx.core.impl.VertxInternal vertx;
    descriptor: Lio/vertx/core/impl/VertxInternal;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.net.NetClientOptions options;
    descriptor: Lio/vertx/core/net/NetClientOptions;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.net.impl.SSLHelper sslHelper;
    descriptor: Lio/vertx/core/net/impl/SSLHelper;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.netty.channel.group.ChannelGroup channelGroup;
    descriptor: Lio/netty/channel/group/ChannelGroup;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.spi.metrics.TCPMetrics metrics;
    descriptor: Lio/vertx/core/spi/metrics/TCPMetrics;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.impl.CloseFuture closeFuture;
    descriptor: Lio/vertx/core/impl/CloseFuture;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 56
            ldc Lio/vertx/core/net/impl/NetClientImpl;
            invokestatic io.vertx.core.impl.logging.LoggerFactory.getLogger:(Ljava/lang/Class;)Lio/vertx/core/impl/logging/Logger;
            putstatic io.vertx.core.net.impl.NetClientImpl.log:Lio/vertx/core/impl/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.impl.VertxInternal, io.vertx.core.net.NetClientOptions, io.vertx.core.impl.CloseFuture);
    descriptor: (Lio/vertx/core/impl/VertxInternal;Lio/vertx/core/net/NetClientOptions;Lio/vertx/core/impl/CloseFuture;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.impl.VertxInternal vertx
        start local 2 // io.vertx.core.net.NetClientOptions options
        start local 3 // io.vertx.core.impl.CloseFuture closeFuture
         0: .line 68
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 69
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.core.net.impl.NetClientImpl.vertx:Lio/vertx/core/impl/VertxInternal;
         2: .line 70
            aload 0 /* this */
            new io.netty.channel.group.DefaultChannelGroup
            dup
            aload 1 /* vertx */
            invokeinterface io.vertx.core.impl.VertxInternal.getAcceptorEventLoopGroup:()Lio/netty/channel/EventLoopGroup;
            invokeinterface io.netty.channel.EventLoopGroup.next:()Lio/netty/channel/EventLoop;
            invokespecial io.netty.channel.group.DefaultChannelGroup.<init>:(Lio/netty/util/concurrent/EventExecutor;)V
            putfield io.vertx.core.net.impl.NetClientImpl.channelGroup:Lio/netty/channel/group/ChannelGroup;
         3: .line 71
            aload 0 /* this */
            new io.vertx.core.net.NetClientOptions
            dup
            aload 2 /* options */
            invokespecial io.vertx.core.net.NetClientOptions.<init>:(Lio/vertx/core/net/NetClientOptions;)V
            putfield io.vertx.core.net.impl.NetClientImpl.options:Lio/vertx/core/net/NetClientOptions;
         4: .line 72
            aload 0 /* this */
            new io.vertx.core.net.impl.SSLHelper
            dup
            aload 2 /* options */
            aload 2 /* options */
            invokevirtual io.vertx.core.net.NetClientOptions.getKeyCertOptions:()Lio/vertx/core/net/KeyCertOptions;
            aload 2 /* options */
            invokevirtual io.vertx.core.net.NetClientOptions.getTrustOptions:()Lio/vertx/core/net/TrustOptions;
            invokespecial io.vertx.core.net.impl.SSLHelper.<init>:(Lio/vertx/core/net/NetClientOptions;Lio/vertx/core/net/KeyCertOptions;Lio/vertx/core/net/TrustOptions;)V
            putfield io.vertx.core.net.impl.NetClientImpl.sslHelper:Lio/vertx/core/net/impl/SSLHelper;
         5: .line 73
            aload 0 /* this */
            aload 1 /* vertx */
            invokeinterface io.vertx.core.impl.VertxInternal.metricsSPI:()Lio/vertx/core/spi/metrics/VertxMetrics;
            ifnull 6
            aload 1 /* vertx */
            invokeinterface io.vertx.core.impl.VertxInternal.metricsSPI:()Lio/vertx/core/spi/metrics/VertxMetrics;
            aload 2 /* options */
            invokeinterface io.vertx.core.spi.metrics.VertxMetrics.createNetClientMetrics:(Lio/vertx/core/net/NetClientOptions;)Lio/vertx/core/spi/metrics/TCPMetrics;
            goto 7
      StackMap locals: io.vertx.core.net.impl.NetClientImpl io.vertx.core.impl.VertxInternal io.vertx.core.net.NetClientOptions io.vertx.core.impl.CloseFuture
      StackMap stack: io.vertx.core.net.impl.NetClientImpl
         6: aconst_null
      StackMap locals: io.vertx.core.net.impl.NetClientImpl io.vertx.core.impl.VertxInternal io.vertx.core.net.NetClientOptions io.vertx.core.impl.CloseFuture
      StackMap stack: io.vertx.core.net.impl.NetClientImpl io.vertx.core.spi.metrics.TCPMetrics
         7: putfield io.vertx.core.net.impl.NetClientImpl.metrics:Lio/vertx/core/spi/metrics/TCPMetrics;
         8: .line 74
            aload 0 /* this */
            aload 2 /* options */
            invokevirtual io.vertx.core.net.NetClientOptions.getLogActivity:()Z
            putfield io.vertx.core.net.impl.NetClientImpl.logEnabled:Z
         9: .line 75
            aload 0 /* this */
            aload 2 /* options */
            invokevirtual io.vertx.core.net.NetClientOptions.getIdleTimeout:()I
            putfield io.vertx.core.net.impl.NetClientImpl.idleTimeout:I
        10: .line 76
            aload 0 /* this */
            aload 2 /* options */
            invokevirtual io.vertx.core.net.NetClientOptions.getIdleTimeoutUnit:()Ljava/util/concurrent/TimeUnit;
            putfield io.vertx.core.net.impl.NetClientImpl.idleTimeoutUnit:Ljava/util/concurrent/TimeUnit;
        11: .line 77
            aload 0 /* this */
            aload 3 /* closeFuture */
            putfield io.vertx.core.net.impl.NetClientImpl.closeFuture:Lio/vertx/core/impl/CloseFuture;
        12: .line 78
            return
        end local 3 // io.vertx.core.impl.CloseFuture closeFuture
        end local 2 // io.vertx.core.net.NetClientOptions options
        end local 1 // io.vertx.core.impl.VertxInternal vertx
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lio/vertx/core/net/impl/NetClientImpl;
            0   13     1        vertx  Lio/vertx/core/impl/VertxInternal;
            0   13     2      options  Lio/vertx/core/net/NetClientOptions;
            0   13     3  closeFuture  Lio/vertx/core/impl/CloseFuture;
    MethodParameters:
             Name  Flags
      vertx        
      options      
      closeFuture  

  protected void initChannel(io.netty.channel.ChannelPipeline);
    descriptor: (Lio/netty/channel/ChannelPipeline;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=11, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.netty.channel.ChannelPipeline pipeline
         0: .line 81
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.logEnabled:Z
            ifeq 2
         1: .line 82
            aload 1 /* pipeline */
            ldc "logging"
            new io.netty.handler.logging.LoggingHandler
            dup
            invokespecial io.netty.handler.logging.LoggingHandler.<init>:()V
            invokeinterface io.netty.channel.ChannelPipeline.addLast:(Ljava/lang/String;Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         2: .line 84
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.sslHelper:Lio/vertx/core/net/impl/SSLHelper;
            invokevirtual io.vertx.core.net.impl.SSLHelper.isSSL:()Z
            ifeq 4
         3: .line 86
            aload 1 /* pipeline */
            ldc "chunkedWriter"
            new io.netty.handler.stream.ChunkedWriteHandler
            dup
            invokespecial io.netty.handler.stream.ChunkedWriteHandler.<init>:()V
            invokeinterface io.netty.channel.ChannelPipeline.addLast:(Ljava/lang/String;Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         4: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.idleTimeout:I
            ifle 6
         5: .line 89
            aload 1 /* pipeline */
            ldc "idle"
            new io.netty.handler.timeout.IdleStateHandler
            dup
            lconst_0
            lconst_0
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.idleTimeout:I
            i2l
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.idleTimeoutUnit:Ljava/util/concurrent/TimeUnit;
            invokespecial io.netty.handler.timeout.IdleStateHandler.<init>:(JJJLjava/util/concurrent/TimeUnit;)V
            invokeinterface io.netty.channel.ChannelPipeline.addLast:(Ljava/lang/String;Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         6: .line 91
      StackMap locals:
      StackMap stack:
            return
        end local 1 // io.netty.channel.ChannelPipeline pipeline
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lio/vertx/core/net/impl/NetClientImpl;
            0    7     1  pipeline  Lio/netty/channel/ChannelPipeline;
    MethodParameters:
          Name  Flags
      pipeline  

  public io.vertx.core.Future<io.vertx.core.net.NetSocket> connect(int, java.lang.String);
    descriptor: (ILjava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // int port
        start local 2 // java.lang.String host
         0: .line 95
            aload 0 /* this */
            iload 1 /* port */
            aload 2 /* host */
            aconst_null
            invokevirtual io.vertx.core.net.impl.NetClientImpl.connect:(ILjava/lang/String;Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
        end local 2 // java.lang.String host
        end local 1 // int port
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/NetClientImpl;
            0    1     1  port  I
            0    1     2  host  Ljava/lang/String;
    Signature: (ILjava/lang/String;)Lio/vertx/core/Future<Lio/vertx/core/net/NetSocket;>;
    MethodParameters:
      Name  Flags
      port  
      host  

  public io.vertx.core.Future<io.vertx.core.net.NetSocket> connect(int, java.lang.String, java.lang.String);
    descriptor: (ILjava/lang/String;Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // int port
        start local 2 // java.lang.String host
        start local 3 // java.lang.String serverName
         0: .line 100
            aload 0 /* this */
            iload 1 /* port */
            aload 2 /* host */
            invokestatic io.vertx.core.net.SocketAddress.inetSocketAddress:(ILjava/lang/String;)Lio/vertx/core/net/SocketAddress;
            aload 3 /* serverName */
            invokevirtual io.vertx.core.net.impl.NetClientImpl.connect:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
        end local 3 // java.lang.String serverName
        end local 2 // java.lang.String host
        end local 1 // int port
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lio/vertx/core/net/impl/NetClientImpl;
            0    1     1        port  I
            0    1     2        host  Ljava/lang/String;
            0    1     3  serverName  Ljava/lang/String;
    Signature: (ILjava/lang/String;Ljava/lang/String;)Lio/vertx/core/Future<Lio/vertx/core/net/NetSocket;>;
    MethodParameters:
            Name  Flags
      port        
      host        
      serverName  

  public io.vertx.core.Future<io.vertx.core.net.NetSocket> connect(io.vertx.core.net.SocketAddress);
    descriptor: (Lio/vertx/core/net/SocketAddress;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.net.SocketAddress remoteAddress
         0: .line 105
            aload 0 /* this */
            aload 1 /* remoteAddress */
            aconst_null
            invokevirtual io.vertx.core.net.impl.NetClientImpl.connect:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;)Lio/vertx/core/Future;
            areturn
        end local 1 // io.vertx.core.net.SocketAddress remoteAddress
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lio/vertx/core/net/impl/NetClientImpl;
            0    1     1  remoteAddress  Lio/vertx/core/net/SocketAddress;
    Signature: (Lio/vertx/core/net/SocketAddress;)Lio/vertx/core/Future<Lio/vertx/core/net/NetSocket;>;
    MethodParameters:
               Name  Flags
      remoteAddress  

  public io.vertx.core.Future<io.vertx.core.net.NetSocket> connect(io.vertx.core.net.SocketAddress, java.lang.String);
    descriptor: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.net.SocketAddress remoteAddress
        start local 2 // java.lang.String serverName
         0: .line 110
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 3 /* ctx */
        start local 3 // io.vertx.core.impl.ContextInternal ctx
         1: .line 111
            aload 3 /* ctx */
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 4 /* promise */
        start local 4 // io.vertx.core.Promise promise
         2: .line 112
            aload 0 /* this */
            aload 1 /* remoteAddress */
            aload 2 /* serverName */
            aload 4 /* promise */
            aload 3 /* ctx */
            invokevirtual io.vertx.core.net.impl.NetClientImpl.doConnect:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;)V
         3: .line 113
            aload 4 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            areturn
        end local 4 // io.vertx.core.Promise promise
        end local 3 // io.vertx.core.impl.ContextInternal ctx
        end local 2 // java.lang.String serverName
        end local 1 // io.vertx.core.net.SocketAddress remoteAddress
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    4     0           this  Lio/vertx/core/net/impl/NetClientImpl;
            0    4     1  remoteAddress  Lio/vertx/core/net/SocketAddress;
            0    4     2     serverName  Ljava/lang/String;
            1    4     3            ctx  Lio/vertx/core/impl/ContextInternal;
            2    4     4        promise  Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;
    Signature: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;)Lio/vertx/core/Future<Lio/vertx/core/net/NetSocket;>;
    MethodParameters:
               Name  Flags
      remoteAddress  
      serverName     

  public io.vertx.core.net.NetClient connect(int, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.net.NetSocket>>);
    descriptor: (ILjava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/net/NetClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // int port
        start local 2 // java.lang.String host
        start local 3 // io.vertx.core.Handler connectHandler
         0: .line 117
            aload 0 /* this */
            iload 1 /* port */
            aload 2 /* host */
            aconst_null
            aload 3 /* connectHandler */
            invokevirtual io.vertx.core.net.impl.NetClientImpl.connect:(ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/net/NetClient;
            areturn
        end local 3 // io.vertx.core.Handler connectHandler
        end local 2 // java.lang.String host
        end local 1 // int port
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/core/net/impl/NetClientImpl;
            0    1     1            port  I
            0    1     2            host  Ljava/lang/String;
            0    1     3  connectHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;
    Signature: (ILjava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;)Lio/vertx/core/net/NetClient;
    MethodParameters:
                Name  Flags
      port            
      host            
      connectHandler  

  public io.vertx.core.net.NetClient connect(int, java.lang.String, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.net.NetSocket>>);
    descriptor: (ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/net/NetClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // int port
        start local 2 // java.lang.String host
        start local 3 // java.lang.String serverName
        start local 4 // io.vertx.core.Handler connectHandler
         0: .line 122
            aload 0 /* this */
            iload 1 /* port */
            aload 2 /* host */
            invokestatic io.vertx.core.net.SocketAddress.inetSocketAddress:(ILjava/lang/String;)Lio/vertx/core/net/SocketAddress;
            aload 3 /* serverName */
            aload 4 /* connectHandler */
            invokevirtual io.vertx.core.net.impl.NetClientImpl.connect:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/net/NetClient;
            areturn
        end local 4 // io.vertx.core.Handler connectHandler
        end local 3 // java.lang.String serverName
        end local 2 // java.lang.String host
        end local 1 // int port
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/core/net/impl/NetClientImpl;
            0    1     1            port  I
            0    1     2            host  Ljava/lang/String;
            0    1     3      serverName  Ljava/lang/String;
            0    1     4  connectHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;
    Signature: (ILjava/lang/String;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;)Lio/vertx/core/net/NetClient;
    MethodParameters:
                Name  Flags
      port            
      host            
      serverName      
      connectHandler  

  public void close(io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 127
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 2 /* closingCtx */
        start local 2 // io.vertx.core.impl.ContextInternal closingCtx
         1: .line 128
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.closeFuture:Lio/vertx/core/impl/CloseFuture;
            aload 1 /* handler */
            ifnull 2
            aload 2 /* closingCtx */
            aload 1 /* handler */
            invokeinterface io.vertx.core.impl.ContextInternal.promise:(Lio/vertx/core/Handler;)Lio/vertx/core/impl/future/PromiseInternal;
            goto 3
      StackMap locals: io.vertx.core.net.impl.NetClientImpl io.vertx.core.Handler io.vertx.core.impl.ContextInternal
      StackMap stack: io.vertx.core.impl.CloseFuture
         2: aconst_null
      StackMap locals: io.vertx.core.net.impl.NetClientImpl io.vertx.core.Handler io.vertx.core.impl.ContextInternal
      StackMap stack: io.vertx.core.impl.CloseFuture io.vertx.core.impl.future.PromiseInternal
         3: invokevirtual io.vertx.core.impl.CloseFuture.close:(Lio/vertx/core/Promise;)V
         4: .line 129
            return
        end local 2 // io.vertx.core.impl.ContextInternal closingCtx
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lio/vertx/core/net/impl/NetClientImpl;
            0    5     1     handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;
            1    5     2  closingCtx  Lio/vertx/core/impl/ContextInternal;
    Signature: (Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/Void;>;>;)V
    MethodParameters:
         Name  Flags
      handler  

  public io.vertx.core.Future<java.lang.Void> close();
    descriptor: ()Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
         0: .line 133
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 1 /* closingCtx */
        start local 1 // io.vertx.core.impl.ContextInternal closingCtx
         1: .line 134
            aload 1 /* closingCtx */
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 2 /* promise */
        start local 2 // io.vertx.core.impl.future.PromiseInternal promise
         2: .line 135
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.closeFuture:Lio/vertx/core/impl/CloseFuture;
            aload 2 /* promise */
            invokevirtual io.vertx.core.impl.CloseFuture.close:(Lio/vertx/core/Promise;)V
         3: .line 136
            aload 2 /* promise */
            invokeinterface io.vertx.core.impl.future.PromiseInternal.future:()Lio/vertx/core/Future;
            areturn
        end local 2 // io.vertx.core.impl.future.PromiseInternal promise
        end local 1 // io.vertx.core.impl.ContextInternal closingCtx
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lio/vertx/core/net/impl/NetClientImpl;
            1    4     1  closingCtx  Lio/vertx/core/impl/ContextInternal;
            2    4     2     promise  Lio/vertx/core/impl/future/PromiseInternal<Ljava/lang/Void;>;
    Signature: ()Lio/vertx/core/Future<Ljava/lang/Void;>;

  public void close(io.vertx.core.Promise<java.lang.Void>);
    descriptor: (Lio/vertx/core/Promise;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.Promise completion
         0: .line 141
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.channelGroup:Lio/netty/channel/group/ChannelGroup;
            invokeinterface io.netty.channel.group.ChannelGroup.close:()Lio/netty/channel/group/ChannelGroupFuture;
            astore 2 /* fut */
        start local 2 // io.netty.channel.group.ChannelGroupFuture fut
         1: .line 142
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.metrics:Lio/vertx/core/spi/metrics/TCPMetrics;
            ifnull 7
         2: .line 143
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            checkcast io.vertx.core.impl.future.PromiseInternal
            astore 3 /* p */
        start local 3 // io.vertx.core.impl.future.PromiseInternal p
         3: .line 144
            aload 2 /* fut */
            aload 3 /* p */
            invokeinterface io.netty.channel.group.ChannelGroupFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/group/ChannelGroupFuture;
            pop
         4: .line 145
            aload 3 /* p */
            invokeinterface io.vertx.core.impl.future.PromiseInternal.future:()Lio/vertx/core/Future;
            aload 0 /* this */
            invokedynamic apply(Lio/vertx/core/net/impl/NetClientImpl;)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;
                  io/vertx/core/net/impl/NetClientImpl.lambda$0(Ljava/lang/Void;)Lio/vertx/core/Future; (7)
                  (Ljava/lang/Void;)Lio/vertx/core/Future;
            invokeinterface io.vertx.core.Future.compose:(Ljava/util/function/Function;)Lio/vertx/core/Future;
         5: .line 148
            aload 1 /* completion */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
        end local 3 // io.vertx.core.impl.future.PromiseInternal p
         6: .line 149
            goto 8
         7: .line 150
      StackMap locals: io.netty.channel.group.ChannelGroupFuture
      StackMap stack:
            aload 2 /* fut */
            aload 1 /* completion */
            checkcast io.vertx.core.impl.future.PromiseInternal
            invokeinterface io.netty.channel.group.ChannelGroupFuture.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/channel/group/ChannelGroupFuture;
            pop
         8: .line 152
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.netty.channel.group.ChannelGroupFuture fut
        end local 1 // io.vertx.core.Promise completion
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lio/vertx/core/net/impl/NetClientImpl;
            0    9     1  completion  Lio/vertx/core/Promise<Ljava/lang/Void;>;
            1    9     2         fut  Lio/netty/channel/group/ChannelGroupFuture;
            3    6     3           p  Lio/vertx/core/impl/future/PromiseInternal<Ljava/lang/Void;>;
    Signature: (Lio/vertx/core/Promise<Ljava/lang/Void;>;)V
    MethodParameters:
            Name  Flags
      completion  

  public boolean isMetricsEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
         0: .line 156
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.metrics:Lio/vertx/core/spi/metrics/TCPMetrics;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/NetClientImpl;

  public io.vertx.core.spi.metrics.Metrics getMetrics();
    descriptor: ()Lio/vertx/core/spi/metrics/Metrics;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
         0: .line 161
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.metrics:Lio/vertx/core/spi/metrics/TCPMetrics;
            areturn
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/NetClientImpl;

  private void checkClosed();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
         0: .line 165
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.closeFuture:Lio/vertx/core/impl/CloseFuture;
            invokevirtual io.vertx.core.impl.CloseFuture.isClosed:()Z
            ifeq 2
         1: .line 166
            new java.lang.IllegalStateException
            dup
            ldc "Client is closed"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 168
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/NetClientImpl;

  private void applyConnectionOptions(boolean, io.netty.bootstrap.Bootstrap);
    descriptor: (ZLio/netty/bootstrap/Bootstrap;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // boolean domainSocket
        start local 2 // io.netty.bootstrap.Bootstrap bootstrap
         0: .line 171
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.transport:()Lio/vertx/core/net/impl/transport/Transport;
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.options:Lio/vertx/core/net/NetClientOptions;
            iload 1 /* domainSocket */
            aload 2 /* bootstrap */
            invokevirtual io.vertx.core.net.impl.transport.Transport.configure:(Lio/vertx/core/net/ClientOptionsBase;ZLio/netty/bootstrap/Bootstrap;)V
         1: .line 172
            return
        end local 2 // io.netty.bootstrap.Bootstrap bootstrap
        end local 1 // boolean domainSocket
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lio/vertx/core/net/impl/NetClientImpl;
            0    2     1  domainSocket  Z
            0    2     2     bootstrap  Lio/netty/bootstrap/Bootstrap;
    MethodParameters:
              Name  Flags
      domainSocket  
      bootstrap     

  public io.vertx.core.net.NetClient connect(io.vertx.core.net.SocketAddress, java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.net.NetSocket>>);
    descriptor: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/net/NetClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.net.SocketAddress remoteAddress
        start local 2 // java.lang.String serverName
        start local 3 // io.vertx.core.Handler connectHandler
         0: .line 176
            aload 3 /* connectHandler */
            ldc "No null connectHandler accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         1: .line 177
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            astore 4 /* ctx */
        start local 4 // io.vertx.core.impl.ContextInternal ctx
         2: .line 178
            aload 4 /* ctx */
            invokeinterface io.vertx.core.impl.ContextInternal.promise:()Lio/vertx/core/impl/future/PromiseInternal;
            astore 5 /* promise */
        start local 5 // io.vertx.core.Promise promise
         3: .line 179
            aload 5 /* promise */
            invokeinterface io.vertx.core.Promise.future:()Lio/vertx/core/Future;
            aload 3 /* connectHandler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         4: .line 180
            aload 0 /* this */
            aload 1 /* remoteAddress */
            aload 2 /* serverName */
            aload 5 /* promise */
            aload 4 /* ctx */
            invokevirtual io.vertx.core.net.impl.NetClientImpl.doConnect:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;)V
         5: .line 181
            aload 0 /* this */
            areturn
        end local 5 // io.vertx.core.Promise promise
        end local 4 // io.vertx.core.impl.ContextInternal ctx
        end local 3 // io.vertx.core.Handler connectHandler
        end local 2 // java.lang.String serverName
        end local 1 // io.vertx.core.net.SocketAddress remoteAddress
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lio/vertx/core/net/impl/NetClientImpl;
            0    6     1   remoteAddress  Lio/vertx/core/net/SocketAddress;
            0    6     2      serverName  Ljava/lang/String;
            0    6     3  connectHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;
            2    6     4             ctx  Lio/vertx/core/impl/ContextInternal;
            3    6     5         promise  Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;
    Signature: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;)Lio/vertx/core/net/NetClient;
    MethodParameters:
                Name  Flags
      remoteAddress   
      serverName      
      connectHandler  

  public io.vertx.core.net.NetClient connect(io.vertx.core.net.SocketAddress, io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.net.NetSocket>>);
    descriptor: (Lio/vertx/core/net/SocketAddress;Lio/vertx/core/Handler;)Lio/vertx/core/net/NetClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.net.SocketAddress remoteAddress
        start local 2 // io.vertx.core.Handler connectHandler
         0: .line 186
            aload 0 /* this */
            aload 1 /* remoteAddress */
            aconst_null
            aload 2 /* connectHandler */
            invokevirtual io.vertx.core.net.impl.NetClientImpl.connect:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/net/NetClient;
            areturn
        end local 2 // io.vertx.core.Handler connectHandler
        end local 1 // io.vertx.core.net.SocketAddress remoteAddress
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Lio/vertx/core/net/impl/NetClientImpl;
            0    1     1   remoteAddress  Lio/vertx/core/net/SocketAddress;
            0    1     2  connectHandler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;
    Signature: (Lio/vertx/core/net/SocketAddress;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Lio/vertx/core/net/NetSocket;>;>;)Lio/vertx/core/net/NetClient;
    MethodParameters:
                Name  Flags
      remoteAddress   
      connectHandler  

  private void doConnect(io.vertx.core.net.SocketAddress, java.lang.String, io.vertx.core.Promise<io.vertx.core.net.NetSocket>, io.vertx.core.impl.ContextInternal);
    descriptor: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.net.SocketAddress remoteAddress
        start local 2 // java.lang.String serverName
        start local 3 // io.vertx.core.Promise connectHandler
        start local 4 // io.vertx.core.impl.ContextInternal ctx
         0: .line 190
            aload 0 /* this */
            aload 1 /* remoteAddress */
            aload 2 /* serverName */
            aload 3 /* connectHandler */
            aload 4 /* ctx */
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.options:Lio/vertx/core/net/NetClientOptions;
            invokevirtual io.vertx.core.net.NetClientOptions.getReconnectAttempts:()I
            invokevirtual io.vertx.core.net.impl.NetClientImpl.doConnect:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;I)V
         1: .line 191
            return
        end local 4 // io.vertx.core.impl.ContextInternal ctx
        end local 3 // io.vertx.core.Promise connectHandler
        end local 2 // java.lang.String serverName
        end local 1 // io.vertx.core.net.SocketAddress remoteAddress
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/vertx/core/net/impl/NetClientImpl;
            0    2     1   remoteAddress  Lio/vertx/core/net/SocketAddress;
            0    2     2      serverName  Ljava/lang/String;
            0    2     3  connectHandler  Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;
            0    2     4             ctx  Lio/vertx/core/impl/ContextInternal;
    Signature: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;Lio/vertx/core/impl/ContextInternal;)V
    MethodParameters:
                Name  Flags
      remoteAddress   
      serverName      
      connectHandler  
      ctx             

  private void doConnect(io.vertx.core.net.SocketAddress, java.lang.String, io.vertx.core.Promise<io.vertx.core.net.NetSocket>, io.vertx.core.impl.ContextInternal, );
    descriptor: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=11, args_size=6
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.net.SocketAddress remoteAddress
        start local 2 // java.lang.String serverName
        start local 3 // io.vertx.core.Promise connectHandler
        start local 4 // io.vertx.core.impl.ContextInternal context
        start local 5 // int remainingAttempts
         0: .line 194
            aload 0 /* this */
            invokevirtual io.vertx.core.net.impl.NetClientImpl.checkClosed:()V
         1: .line 195
            aload 3 /* connectHandler */
            ldc "No null connectHandler accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 196
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.sslHelper:Lio/vertx/core/net/impl/SSLHelper;
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            invokevirtual io.vertx.core.net.impl.SSLHelper.validate:(Lio/vertx/core/impl/VertxInternal;)V
         3: .line 197
            new io.netty.bootstrap.Bootstrap
            dup
            invokespecial io.netty.bootstrap.Bootstrap.<init>:()V
            astore 6 /* bootstrap */
        start local 6 // io.netty.bootstrap.Bootstrap bootstrap
         4: .line 198
            aload 6 /* bootstrap */
            aload 4 /* context */
            invokeinterface io.vertx.core.impl.ContextInternal.nettyEventLoop:()Lio/netty/channel/EventLoop;
            invokevirtual io.netty.bootstrap.Bootstrap.group:(Lio/netty/channel/EventLoopGroup;)Lio/netty/bootstrap/AbstractBootstrap;
            pop
         5: .line 200
            aload 0 /* this */
            aload 1 /* remoteAddress */
            invokeinterface io.vertx.core.net.SocketAddress.isDomainSocket:()Z
            aload 6 /* bootstrap */
            invokevirtual io.vertx.core.net.impl.NetClientImpl.applyConnectionOptions:(ZLio/netty/bootstrap/Bootstrap;)V
         6: .line 202
            new io.vertx.core.net.impl.ChannelProvider
            dup
            aload 6 /* bootstrap */
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.sslHelper:Lio/vertx/core/net/impl/SSLHelper;
            aload 4 /* context */
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.options:Lio/vertx/core/net/NetClientOptions;
            invokevirtual io.vertx.core.net.NetClientOptions.getProxyOptions:()Lio/vertx/core/net/ProxyOptions;
            invokespecial io.vertx.core.net.impl.ChannelProvider.<init>:(Lio/netty/bootstrap/Bootstrap;Lio/vertx/core/net/impl/SSLHelper;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/net/ProxyOptions;)V
            astore 7 /* channelProvider */
        start local 7 // io.vertx.core.net.impl.ChannelProvider channelProvider
         7: .line 204
            aload 1 /* remoteAddress */
            astore 8 /* peerAddress */
        start local 8 // io.vertx.core.net.SocketAddress peerAddress
         8: .line 205
            aload 8 /* peerAddress */
            invokeinterface io.vertx.core.net.SocketAddress.host:()Ljava/lang/String;
            astore 9 /* peerHost */
        start local 9 // java.lang.String peerHost
         9: .line 206
            aload 9 /* peerHost */
            ifnull 11
            aload 9 /* peerHost */
            ldc "."
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 11
        10: .line 207
            aload 8 /* peerAddress */
            invokeinterface io.vertx.core.net.SocketAddress.port:()I
            aload 9 /* peerHost */
            iconst_0
            aload 9 /* peerHost */
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokestatic io.vertx.core.net.SocketAddress.inetSocketAddress:(ILjava/lang/String;)Lio/vertx/core/net/SocketAddress;
            astore 8 /* peerAddress */
        11: .line 209
      StackMap locals: io.vertx.core.net.impl.NetClientImpl io.vertx.core.net.SocketAddress java.lang.String io.vertx.core.Promise io.vertx.core.impl.ContextInternal int io.netty.bootstrap.Bootstrap io.vertx.core.net.impl.ChannelProvider io.vertx.core.net.SocketAddress java.lang.String
      StackMap stack:
            aload 7 /* channelProvider */
            aload 1 /* remoteAddress */
            aload 8 /* peerAddress */
            aload 2 /* serverName */
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.sslHelper:Lio/vertx/core/net/impl/SSLHelper;
            invokevirtual io.vertx.core.net.impl.SSLHelper.isSSL:()Z
            invokevirtual io.vertx.core.net.impl.ChannelProvider.connect:(Lio/vertx/core/net/SocketAddress;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Z)Lio/netty/util/concurrent/Future;
            astore 10 /* fut */
        start local 10 // io.netty.util.concurrent.Future fut
        12: .line 210
            aload 10 /* fut */
            aload 0 /* this */
            aload 4 /* context */
            aload 3 /* connectHandler */
            aload 1 /* remoteAddress */
            iload 5 /* remainingAttempts */
            aload 2 /* serverName */
            invokedynamic operationComplete(Lio/vertx/core/net/impl/NetClientImpl;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Promise;Lio/vertx/core/net/SocketAddress;ILjava/lang/String;)Lio/netty/util/concurrent/GenericFutureListener;
              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:
                  (Lio/netty/util/concurrent/Future;)V
                  io/vertx/core/net/impl/NetClientImpl.lambda$1(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Promise;Lio/vertx/core/net/SocketAddress;ILjava/lang/String;Lio/netty/util/concurrent/Future;)V (7)
                  (Lio/netty/util/concurrent/Future;)V
            invokeinterface io.netty.util.concurrent.Future.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Future;
            pop
        13: .line 231
            return
        end local 10 // io.netty.util.concurrent.Future fut
        end local 9 // java.lang.String peerHost
        end local 8 // io.vertx.core.net.SocketAddress peerAddress
        end local 7 // io.vertx.core.net.impl.ChannelProvider channelProvider
        end local 6 // io.netty.bootstrap.Bootstrap bootstrap
        end local 5 // int remainingAttempts
        end local 4 // io.vertx.core.impl.ContextInternal context
        end local 3 // io.vertx.core.Promise connectHandler
        end local 2 // java.lang.String serverName
        end local 1 // io.vertx.core.net.SocketAddress remoteAddress
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   14     0               this  Lio/vertx/core/net/impl/NetClientImpl;
            0   14     1      remoteAddress  Lio/vertx/core/net/SocketAddress;
            0   14     2         serverName  Ljava/lang/String;
            0   14     3     connectHandler  Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;
            0   14     4            context  Lio/vertx/core/impl/ContextInternal;
            0   14     5  remainingAttempts  I
            4   14     6          bootstrap  Lio/netty/bootstrap/Bootstrap;
            7   14     7    channelProvider  Lio/vertx/core/net/impl/ChannelProvider;
            8   14     8        peerAddress  Lio/vertx/core/net/SocketAddress;
            9   14     9           peerHost  Ljava/lang/String;
           12   14    10                fut  Lio/netty/util/concurrent/Future<Lio/netty/channel/Channel;>;
    Signature: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;Lio/vertx/core/impl/ContextInternal;I)V
    MethodParameters:
                   Name  Flags
      remoteAddress      
      serverName         
      connectHandler     
      context            
      remainingAttempts  

  private void connected(io.vertx.core.impl.ContextInternal, io.netty.channel.Channel, io.vertx.core.Promise<io.vertx.core.net.NetSocket>, io.vertx.core.net.SocketAddress);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/netty/channel/Channel;Lio/vertx/core/Promise;Lio/vertx/core/net/SocketAddress;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.impl.ContextInternal context
        start local 2 // io.netty.channel.Channel ch
        start local 3 // io.vertx.core.Promise connectHandler
        start local 4 // io.vertx.core.net.SocketAddress remoteAddress
         0: .line 234
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.channelGroup:Lio/netty/channel/group/ChannelGroup;
            aload 2 /* ch */
            invokeinterface io.netty.channel.group.ChannelGroup.add:(Ljava/lang/Object;)Z
            pop
         1: .line 235
            aload 0 /* this */
            aload 2 /* ch */
            invokeinterface io.netty.channel.Channel.pipeline:()Lio/netty/channel/ChannelPipeline;
            invokevirtual io.vertx.core.net.impl.NetClientImpl.initChannel:(Lio/netty/channel/ChannelPipeline;)V
         2: .line 236
            aload 0 /* this */
            aload 1 /* context */
            aload 4 /* remoteAddress */
            invokedynamic apply(Lio/vertx/core/net/impl/NetClientImpl;Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/net/SocketAddress;)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;
                  io/vertx/core/net/impl/NetClientImpl.lambda$4(Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/net/SocketAddress;Lio/netty/channel/ChannelHandlerContext;)Lio/vertx/core/net/impl/NetSocketImpl; (7)
                  (Lio/netty/channel/ChannelHandlerContext;)Lio/vertx/core/net/impl/NetSocketImpl;
            invokestatic io.vertx.core.net.impl.VertxHandler.create:(Ljava/util/function/Function;)Lio/vertx/core/net/impl/VertxHandler;
            astore 5 /* handler */
        start local 5 // io.vertx.core.net.impl.VertxHandler handler
         3: .line 237
            aload 5 /* handler */
            aload 0 /* this */
            aload 3 /* connectHandler */
            invokedynamic handle(Lio/vertx/core/net/impl/NetClientImpl;Lio/vertx/core/Promise;)Lio/vertx/core/Handler;
              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;)V
                  io/vertx/core/net/impl/NetClientImpl.lambda$5(Lio/vertx/core/Promise;Lio/vertx/core/net/impl/NetSocketImpl;)V (7)
                  (Lio/vertx/core/net/impl/NetSocketImpl;)V
            invokevirtual io.vertx.core.net.impl.VertxHandler.addHandler:(Lio/vertx/core/Handler;)Lio/vertx/core/net/impl/VertxHandler;
            pop
         4: .line 244
            aload 2 /* ch */
            invokeinterface io.netty.channel.Channel.pipeline:()Lio/netty/channel/ChannelPipeline;
            ldc "handler"
            aload 5 /* handler */
            invokeinterface io.netty.channel.ChannelPipeline.addLast:(Ljava/lang/String;Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
         5: .line 245
            return
        end local 5 // io.vertx.core.net.impl.VertxHandler handler
        end local 4 // io.vertx.core.net.SocketAddress remoteAddress
        end local 3 // io.vertx.core.Promise connectHandler
        end local 2 // io.netty.channel.Channel ch
        end local 1 // io.vertx.core.impl.ContextInternal context
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lio/vertx/core/net/impl/NetClientImpl;
            0    6     1         context  Lio/vertx/core/impl/ContextInternal;
            0    6     2              ch  Lio/netty/channel/Channel;
            0    6     3  connectHandler  Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;
            0    6     4   remoteAddress  Lio/vertx/core/net/SocketAddress;
            3    6     5         handler  Lio/vertx/core/net/impl/VertxHandler<Lio/vertx/core/net/impl/NetSocketImpl;>;
    Signature: (Lio/vertx/core/impl/ContextInternal;Lio/netty/channel/Channel;Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;Lio/vertx/core/net/SocketAddress;)V
    MethodParameters:
                Name  Flags
      context         
      ch              
      connectHandler  
      remoteAddress   

  private void failed(io.vertx.core.impl.ContextInternal, io.netty.channel.Channel, java.lang.Throwable, io.vertx.core.Promise<io.vertx.core.net.NetSocket>);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/netty/channel/Channel;Ljava/lang/Throwable;Lio/vertx/core/Promise;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // io.vertx.core.impl.ContextInternal context
        start local 2 // io.netty.channel.Channel ch
        start local 3 // java.lang.Throwable th
        start local 4 // io.vertx.core.Promise connectHandler
         0: .line 248
            aload 2 /* ch */
            ifnull 2
         1: .line 249
            aload 2 /* ch */
            invokeinterface io.netty.channel.Channel.close:()Lio/netty/channel/ChannelFuture;
            pop
         2: .line 251
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            aload 3 /* th */
            aload 4 /* connectHandler */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic handle(Lio/vertx/core/Promise;)Lio/vertx/core/Handler;
              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;)V
                  io/vertx/core/Promise.tryFail(Ljava/lang/Throwable;)Z (9 itf)
                  (Ljava/lang/Throwable;)V
            invokeinterface io.vertx.core.impl.ContextInternal.emit:(Ljava/lang/Object;Lio/vertx/core/Handler;)V
         3: .line 252
            return
        end local 4 // io.vertx.core.Promise connectHandler
        end local 3 // java.lang.Throwable th
        end local 2 // io.netty.channel.Channel ch
        end local 1 // io.vertx.core.impl.ContextInternal context
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lio/vertx/core/net/impl/NetClientImpl;
            0    4     1         context  Lio/vertx/core/impl/ContextInternal;
            0    4     2              ch  Lio/netty/channel/Channel;
            0    4     3              th  Ljava/lang/Throwable;
            0    4     4  connectHandler  Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;
    Signature: (Lio/vertx/core/impl/ContextInternal;Lio/netty/channel/Channel;Ljava/lang/Throwable;Lio/vertx/core/Promise<Lio/vertx/core/net/NetSocket;>;)V
    MethodParameters:
                Name  Flags
      context         
      ch              
      th              
      connectHandler  

  protected void finalize();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
         0: .line 259
            aload 0 /* this */
            invokestatic io.vertx.core.Promise.promise:()Lio/vertx/core/Promise;
            invokevirtual io.vertx.core.net.impl.NetClientImpl.close:(Lio/vertx/core/Handler;)V
         1: .line 260
            aload 0 /* this */
            invokespecial java.lang.Object.finalize:()V
         2: .line 261
            return
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/NetClientImpl;
    Exceptions:
      throws java.lang.Throwable

  private io.vertx.core.Future lambda$0(java.lang.Void);
    descriptor: (Ljava/lang/Void;)Lio/vertx/core/Future;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 1 // java.lang.Void v
         0: .line 146
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.metrics:Lio/vertx/core/spi/metrics/TCPMetrics;
            invokeinterface io.vertx.core.spi.metrics.TCPMetrics.close:()V
         1: .line 147
            invokestatic io.vertx.core.Future.succeededFuture:()Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.Void v
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/net/impl/NetClientImpl;
            0    2     1     v  Ljava/lang/Void;

  private void lambda$1(io.vertx.core.impl.ContextInternal, io.vertx.core.Promise, io.vertx.core.net.SocketAddress, int, java.lang.String, io.netty.util.concurrent.Future);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/Promise;Lio/vertx/core/net/SocketAddress;ILjava/lang/String;Lio/netty/util/concurrent/Future;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=7, locals=9, args_size=7
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 6 // io.netty.util.concurrent.Future future
         0: .line 211
            aload 6 /* future */
            invokeinterface io.netty.util.concurrent.Future.isSuccess:()Z
            ifeq 4
         1: .line 212
            aload 6 /* future */
            invokeinterface io.netty.util.concurrent.Future.getNow:()Ljava/lang/Object;
            checkcast io.netty.channel.Channel
            astore 7 /* ch */
        start local 7 // io.netty.channel.Channel ch
         2: .line 213
            aload 0 /* this */
            aload 1
            aload 7 /* ch */
            aload 2
            aload 3
            invokevirtual io.vertx.core.net.impl.NetClientImpl.connected:(Lio/vertx/core/impl/ContextInternal;Lio/netty/channel/Channel;Lio/vertx/core/Promise;Lio/vertx/core/net/SocketAddress;)V
        end local 7 // io.netty.channel.Channel ch
         3: .line 214
            goto 12
         4: .line 215
      StackMap locals:
      StackMap stack:
            aload 6 /* future */
            invokeinterface io.netty.util.concurrent.Future.cause:()Ljava/lang/Throwable;
            astore 7 /* cause */
        start local 7 // java.lang.Throwable cause
         5: .line 217
            aload 7 /* cause */
            instanceof java.net.ConnectException
            ifne 6
            aload 7 /* cause */
            instanceof java.io.FileNotFoundException
            ifne 6
            iconst_0
            goto 7
      StackMap locals: java.lang.Throwable
      StackMap stack:
         6: iconst_1
      StackMap locals:
      StackMap stack: int
         7: istore 8 /* connectError */
        start local 8 // boolean connectError
         8: .line 218
            iload 8 /* connectError */
            ifeq 11
            iload 4
            ifgt 9
            iload 4
            iconst_m1
            if_icmpne 11
         9: .line 219
      StackMap locals: int
      StackMap stack:
            aload 1
            aload 0 /* this */
            aload 3
            aload 5
            aload 2
            aload 1
            iload 4
            invokedynamic handle(Lio/vertx/core/net/impl/NetClientImpl;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;I)Lio/vertx/core/Handler;
              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;)V
                  io/vertx/core/net/impl/NetClientImpl.lambda$2(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;ILjava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.emit:(Lio/vertx/core/Handler;)V
        10: .line 226
            goto 12
        11: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1
            aconst_null
            aload 7 /* cause */
            aload 2
            invokevirtual io.vertx.core.net.impl.NetClientImpl.failed:(Lio/vertx/core/impl/ContextInternal;Lio/netty/channel/Channel;Ljava/lang/Throwable;Lio/vertx/core/Promise;)V
        end local 8 // boolean connectError
        end local 7 // java.lang.Throwable cause
        12: .line 230
      StackMap locals:
      StackMap stack:
            return
        end local 6 // io.netty.util.concurrent.Future future
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lio/vertx/core/net/impl/NetClientImpl;
            0   13     6        future  Lio/netty/util/concurrent/Future<Lio/netty/channel/Channel;>;
            2    3     7            ch  Lio/netty/channel/Channel;
            5   12     7         cause  Ljava/lang/Throwable;
            8   12     8  connectError  Z
    Exceptions:
      throws java.lang.Exception

  private io.vertx.core.net.impl.NetSocketImpl lambda$4(io.vertx.core.impl.ContextInternal, io.vertx.core.net.SocketAddress, io.netty.channel.ChannelHandlerContext);
    descriptor: (Lio/vertx/core/impl/ContextInternal;Lio/vertx/core/net/SocketAddress;Lio/netty/channel/ChannelHandlerContext;)Lio/vertx/core/net/impl/NetSocketImpl;
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 3 // io.netty.channel.ChannelHandlerContext ctx
         0: .line 236
            new io.vertx.core.net.impl.NetSocketImpl
            dup
            aload 1
            aload 3 /* ctx */
            aload 2
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.sslHelper:Lio/vertx/core/net/impl/SSLHelper;
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.metrics:Lio/vertx/core/spi/metrics/TCPMetrics;
            invokespecial io.vertx.core.net.impl.NetSocketImpl.<init>:(Lio/vertx/core/impl/ContextInternal;Lio/netty/channel/ChannelHandlerContext;Lio/vertx/core/net/SocketAddress;Lio/vertx/core/net/impl/SSLHelper;Lio/vertx/core/spi/metrics/TCPMetrics;)V
            areturn
        end local 3 // io.netty.channel.ChannelHandlerContext ctx
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/net/impl/NetClientImpl;
            0    1     3   ctx  Lio/netty/channel/ChannelHandlerContext;

  private void lambda$5(io.vertx.core.Promise, io.vertx.core.net.impl.NetSocketImpl);
    descriptor: (Lio/vertx/core/Promise;Lio/vertx/core/net/impl/NetSocketImpl;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 2 // io.vertx.core.net.impl.NetSocketImpl sock
         0: .line 238
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.metrics:Lio/vertx/core/spi/metrics/TCPMetrics;
            ifnull 2
         1: .line 239
            aload 2 /* sock */
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.metrics:Lio/vertx/core/spi/metrics/TCPMetrics;
            aload 2 /* sock */
            invokevirtual io.vertx.core.net.impl.NetSocketImpl.remoteAddress:()Lio/vertx/core/net/SocketAddress;
            aload 2 /* sock */
            invokevirtual io.vertx.core.net.impl.NetSocketImpl.remoteName:()Ljava/lang/String;
            invokeinterface io.vertx.core.spi.metrics.TCPMetrics.connected:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;)Ljava/lang/Object;
            invokevirtual io.vertx.core.net.impl.NetSocketImpl.metric:(Ljava/lang/Object;)V
         2: .line 241
      StackMap locals:
      StackMap stack:
            aload 2 /* sock */
            invokevirtual io.vertx.core.net.impl.NetSocketImpl.registerEventBusHandler:()V
         3: .line 242
            aload 1
            aload 2 /* sock */
            invokeinterface io.vertx.core.Promise.complete:(Ljava/lang/Object;)V
         4: .line 243
            return
        end local 2 // io.vertx.core.net.impl.NetSocketImpl sock
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/vertx/core/net/impl/NetClientImpl;
            0    5     2  sock  Lio/vertx/core/net/impl/NetSocketImpl;

  private void lambda$2(io.vertx.core.net.SocketAddress, java.lang.String, io.vertx.core.Promise, io.vertx.core.impl.ContextInternal, int, java.lang.Void);
    descriptor: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;ILjava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=9, locals=7, args_size=7
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 6 // java.lang.Void v
         0: .line 220
            getstatic io.vertx.core.net.impl.NetClientImpl.log:Lio/vertx/core/impl/logging/Logger;
            new java.lang.StringBuilder
            dup
            ldc "Failed to create connection. Will retry in "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.options:Lio/vertx/core/net/NetClientOptions;
            invokevirtual io.vertx.core.net.NetClientOptions.getReconnectInterval:()J
            invokevirtual java.lang.StringBuilder.append:(J)Ljava/lang/StringBuilder;
            ldc " milliseconds"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokeinterface io.vertx.core.impl.logging.Logger.debug:(Ljava/lang/Object;)V
         1: .line 222
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.vertx:Lio/vertx/core/impl/VertxInternal;
            aload 0 /* this */
            getfield io.vertx.core.net.impl.NetClientImpl.options:Lio/vertx/core/net/NetClientOptions;
            invokevirtual io.vertx.core.net.NetClientOptions.getReconnectInterval:()J
            aload 0 /* this */
            aload 1
            aload 2
            aload 3
            aload 4
            iload 5
            invokedynamic handle(Lio/vertx/core/net/impl/NetClientImpl;Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;I)Lio/vertx/core/Handler;
              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;)V
                  io/vertx/core/net/impl/NetClientImpl.lambda$3(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;ILjava/lang/Long;)V (7)
                  (Ljava/lang/Long;)V
            invokeinterface io.vertx.core.impl.VertxInternal.setTimer:(JLio/vertx/core/Handler;)J
            pop2
         2: .line 225
            return
        end local 6 // java.lang.Void v
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/NetClientImpl;
            0    3     6     v  Ljava/lang/Void;

  private void lambda$3(io.vertx.core.net.SocketAddress, java.lang.String, io.vertx.core.Promise, io.vertx.core.impl.ContextInternal, int, java.lang.Long);
    descriptor: (Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;ILjava/lang/Long;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=7, locals=7, args_size=7
        start local 0 // io.vertx.core.net.impl.NetClientImpl this
        start local 6 // java.lang.Long tid
         0: .line 223
            aload 0 /* this */
            aload 1
            aload 2
            aload 3
            aload 4
            iload 5
            iconst_m1
            if_icmpne 1
            iload 5
            goto 2
      StackMap locals: io.vertx.core.net.impl.NetClientImpl io.vertx.core.net.SocketAddress java.lang.String io.vertx.core.Promise io.vertx.core.impl.ContextInternal int java.lang.Long
      StackMap stack: io.vertx.core.net.impl.NetClientImpl io.vertx.core.net.SocketAddress java.lang.String io.vertx.core.Promise io.vertx.core.impl.ContextInternal
         1: iload 5
            iconst_1
            isub
      StackMap locals: io.vertx.core.net.impl.NetClientImpl io.vertx.core.net.SocketAddress java.lang.String io.vertx.core.Promise io.vertx.core.impl.ContextInternal int java.lang.Long
      StackMap stack: io.vertx.core.net.impl.NetClientImpl io.vertx.core.net.SocketAddress java.lang.String io.vertx.core.Promise io.vertx.core.impl.ContextInternal int
         2: invokevirtual io.vertx.core.net.impl.NetClientImpl.doConnect:(Lio/vertx/core/net/SocketAddress;Ljava/lang/String;Lio/vertx/core/Promise;Lio/vertx/core/impl/ContextInternal;I)V
            return
        end local 6 // java.lang.Long tid
        end local 0 // io.vertx.core.net.impl.NetClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/vertx/core/net/impl/NetClientImpl;
            0    3     6   tid  Ljava/lang/Long;
}
SourceFile: "NetClientImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles