public final class io.vertx.core.dns.impl.DnsClientImpl implements io.vertx.core.dns.DnsClient
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: io.vertx.core.dns.impl.DnsClientImpl
  super_class: java.lang.Object
{
  private static final char[] HEX_TABLE;
    descriptor: [C
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, 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.netty.util.collection.LongObjectMap<io.vertx.core.dns.impl.DnsClientImpl$Query> inProgressMap;
    descriptor: Lio/netty/util/collection/LongObjectMap;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lio/netty/util/collection/LongObjectMap<Lio/vertx/core/dns/impl/DnsClientImpl$Query;>;

  private final java.net.InetSocketAddress dnsServer;
    descriptor: Ljava/net/InetSocketAddress;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final io.netty.channel.socket.DatagramChannel channel;
    descriptor: Lio/netty/channel/socket/DatagramChannel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final io.vertx.core.dns.DnsClientOptions options;
    descriptor: Lio/vertx/core/dns/DnsClientOptions;
    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 47
            ldc "0123456789abcdef"
            invokevirtual java.lang.String.toCharArray:()[C
            putstatic io.vertx.core.dns.impl.DnsClientImpl.HEX_TABLE:[C
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(io.vertx.core.impl.VertxInternal, io.vertx.core.dns.DnsClientOptions);
    descriptor: (Lio/vertx/core/impl/VertxInternal;Lio/vertx/core/dns/DnsClientOptions;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // io.vertx.core.impl.VertxInternal vertx
        start local 2 // io.vertx.core.dns.DnsClientOptions options
         0: .line 56
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 50
            aload 0 /* this */
            new io.netty.util.collection.LongObjectHashMap
            dup
            invokespecial io.netty.util.collection.LongObjectHashMap.<init>:()V
            putfield io.vertx.core.dns.impl.DnsClientImpl.inProgressMap:Lio/netty/util/collection/LongObjectMap;
         2: .line 57
            aload 2 /* options */
            ldc "no null options accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 58
            aload 2 /* options */
            invokevirtual io.vertx.core.dns.DnsClientOptions.getHost:()Ljava/lang/String;
            ldc "no null host accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         4: .line 60
            aload 0 /* this */
            new io.vertx.core.dns.DnsClientOptions
            dup
            aload 2 /* options */
            invokespecial io.vertx.core.dns.DnsClientOptions.<init>:(Lio/vertx/core/dns/DnsClientOptions;)V
            putfield io.vertx.core.dns.impl.DnsClientImpl.options:Lio/vertx/core/dns/DnsClientOptions;
         5: .line 62
            aload 1 /* vertx */
            invokeinterface io.vertx.core.impl.VertxInternal.getContext:()Lio/vertx/core/impl/ContextInternal;
            pop
         6: .line 64
            aload 0 /* this */
            new java.net.InetSocketAddress
            dup
            aload 2 /* options */
            invokevirtual io.vertx.core.dns.DnsClientOptions.getHost:()Ljava/lang/String;
            aload 2 /* options */
            invokevirtual io.vertx.core.dns.DnsClientOptions.getPort:()I
            invokespecial java.net.InetSocketAddress.<init>:(Ljava/lang/String;I)V
            putfield io.vertx.core.dns.impl.DnsClientImpl.dnsServer:Ljava/net/InetSocketAddress;
         7: .line 65
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.dnsServer:Ljava/net/InetSocketAddress;
            invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
            ifeq 9
         8: .line 66
            new java.lang.IllegalArgumentException
            dup
            ldc "Cannot resolve the host to a valid ip address"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 68
      StackMap locals: io.vertx.core.dns.impl.DnsClientImpl io.vertx.core.impl.VertxInternal io.vertx.core.dns.DnsClientOptions
      StackMap stack:
            aload 0 /* this */
            aload 1 /* vertx */
            putfield io.vertx.core.dns.impl.DnsClientImpl.vertx:Lio/vertx/core/impl/VertxInternal;
        10: .line 70
            aload 1 /* vertx */
            invokeinterface io.vertx.core.impl.VertxInternal.transport:()Lio/vertx/core/net/impl/transport/Transport;
            astore 3 /* transport */
        start local 3 // io.vertx.core.net.impl.transport.Transport transport
        11: .line 71
            aload 0 /* this */
            aload 1 /* vertx */
            invokeinterface io.vertx.core.impl.VertxInternal.getOrCreateContext:()Lio/vertx/core/impl/ContextInternal;
            putfield io.vertx.core.dns.impl.DnsClientImpl.actualCtx:Lio/vertx/core/impl/ContextInternal;
        12: .line 72
            aload 0 /* this */
            aload 3 /* transport */
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.dnsServer:Ljava/net/InetSocketAddress;
            invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
            instanceof java.net.Inet4Address
            ifeq 13
            getstatic io.netty.channel.socket.InternetProtocolFamily.IPv4:Lio/netty/channel/socket/InternetProtocolFamily;
            goto 14
      StackMap locals: io.vertx.core.dns.impl.DnsClientImpl io.vertx.core.impl.VertxInternal io.vertx.core.dns.DnsClientOptions io.vertx.core.net.impl.transport.Transport
      StackMap stack: io.vertx.core.dns.impl.DnsClientImpl io.vertx.core.net.impl.transport.Transport
        13: getstatic io.netty.channel.socket.InternetProtocolFamily.IPv6:Lio/netty/channel/socket/InternetProtocolFamily;
      StackMap locals: io.vertx.core.dns.impl.DnsClientImpl io.vertx.core.impl.VertxInternal io.vertx.core.dns.DnsClientOptions io.vertx.core.net.impl.transport.Transport
      StackMap stack: io.vertx.core.dns.impl.DnsClientImpl io.vertx.core.net.impl.transport.Transport io.netty.channel.socket.InternetProtocolFamily
        14: invokevirtual io.vertx.core.net.impl.transport.Transport.datagramChannel:(Lio/netty/channel/socket/InternetProtocolFamily;)Lio/netty/channel/socket/DatagramChannel;
            putfield io.vertx.core.dns.impl.DnsClientImpl.channel:Lio/netty/channel/socket/DatagramChannel;
        15: .line 73
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.channel:Lio/netty/channel/socket/DatagramChannel;
            invokeinterface io.netty.channel.socket.DatagramChannel.config:()Lio/netty/channel/socket/DatagramChannelConfig;
            getstatic io.netty.channel.ChannelOption.DATAGRAM_CHANNEL_ACTIVE_ON_REGISTRATION:Lio/netty/channel/ChannelOption;
            iconst_1
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            invokeinterface io.netty.channel.socket.DatagramChannelConfig.setOption:(Lio/netty/channel/ChannelOption;Ljava/lang/Object;)Z
            pop
        16: .line 74
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.channel:Lio/netty/channel/socket/DatagramChannel;
            invokeinterface io.netty.channel.socket.DatagramChannel.config:()Lio/netty/channel/socket/DatagramChannelConfig;
            invokeinterface io.netty.channel.socket.DatagramChannelConfig.getRecvByteBufAllocator:()Lio/netty/channel/RecvByteBufAllocator;
            checkcast io.netty.channel.MaxMessagesRecvByteBufAllocator
            astore 4 /* bufAllocator */
        start local 4 // io.netty.channel.MaxMessagesRecvByteBufAllocator bufAllocator
        17: .line 75
            aload 4 /* bufAllocator */
            iconst_1
            invokeinterface io.netty.channel.MaxMessagesRecvByteBufAllocator.maxMessagesPerRead:(I)Lio/netty/channel/MaxMessagesRecvByteBufAllocator;
            pop
        18: .line 76
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.channel:Lio/netty/channel/socket/DatagramChannel;
            invokeinterface io.netty.channel.socket.DatagramChannel.config:()Lio/netty/channel/socket/DatagramChannelConfig;
            getstatic io.vertx.core.net.impl.PartialPooledByteBufAllocator.INSTANCE:Lio/vertx/core/net/impl/PartialPooledByteBufAllocator;
            invokeinterface io.netty.channel.socket.DatagramChannelConfig.setAllocator:(Lio/netty/buffer/ByteBufAllocator;)Lio/netty/channel/socket/DatagramChannelConfig;
            pop
        19: .line 77
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.actualCtx:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.nettyEventLoop:()Lio/netty/channel/EventLoop;
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.channel:Lio/netty/channel/socket/DatagramChannel;
            invokeinterface io.netty.channel.EventLoop.register:(Lio/netty/channel/Channel;)Lio/netty/channel/ChannelFuture;
            pop
        20: .line 78
            aload 2 /* options */
            invokevirtual io.vertx.core.dns.DnsClientOptions.getLogActivity:()Z
            ifeq 22
        21: .line 79
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.channel:Lio/netty/channel/socket/DatagramChannel;
            invokeinterface io.netty.channel.socket.DatagramChannel.pipeline:()Lio/netty/channel/ChannelPipeline;
            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
        22: .line 81
      StackMap locals: io.netty.channel.MaxMessagesRecvByteBufAllocator
      StackMap stack:
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.channel:Lio/netty/channel/socket/DatagramChannel;
            invokeinterface io.netty.channel.socket.DatagramChannel.pipeline:()Lio/netty/channel/ChannelPipeline;
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.handler.codec.dns.DatagramDnsQueryEncoder
            dup
            invokespecial io.netty.handler.codec.dns.DatagramDnsQueryEncoder.<init>:()V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
        23: .line 82
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.channel:Lio/netty/channel/socket/DatagramChannel;
            invokeinterface io.netty.channel.socket.DatagramChannel.pipeline:()Lio/netty/channel/ChannelPipeline;
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.netty.handler.codec.dns.DatagramDnsResponseDecoder
            dup
            invokespecial io.netty.handler.codec.dns.DatagramDnsResponseDecoder.<init>:()V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
        24: .line 83
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.channel:Lio/netty/channel/socket/DatagramChannel;
            invokeinterface io.netty.channel.socket.DatagramChannel.pipeline:()Lio/netty/channel/ChannelPipeline;
            iconst_1
            anewarray io.netty.channel.ChannelHandler
            dup
            iconst_0
            new io.vertx.core.dns.impl.DnsClientImpl$1
            dup
            aload 0 /* this */
            invokespecial io.vertx.core.dns.impl.DnsClientImpl$1.<init>:(Lio/vertx/core/dns/impl/DnsClientImpl;)V
            aastore
            invokeinterface io.netty.channel.ChannelPipeline.addLast:([Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
        25: .line 93
            return
        end local 4 // io.netty.channel.MaxMessagesRecvByteBufAllocator bufAllocator
        end local 3 // io.vertx.core.net.impl.transport.Transport transport
        end local 2 // io.vertx.core.dns.DnsClientOptions options
        end local 1 // io.vertx.core.impl.VertxInternal vertx
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   26     0          this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0   26     1         vertx  Lio/vertx/core/impl/VertxInternal;
            0   26     2       options  Lio/vertx/core/dns/DnsClientOptions;
           11   26     3     transport  Lio/vertx/core/net/impl/transport/Transport;
           17   26     4  bufAllocator  Lio/netty/channel/MaxMessagesRecvByteBufAllocator;
    MethodParameters:
         Name  Flags
      vertx    
      options  

  public io.vertx.core.dns.DnsClient lookup4(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 97
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookup4:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 98
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.lang.String> lookup4(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 103
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.A:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupSingle:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/String;>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN, location=[TYPE_ARGUMENT(0)]
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.dns.DnsClient lookup6(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 108
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookup6:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 109
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.lang.String> lookup6(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 114
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.AAAA:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupSingle:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/String;>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN, location=[TYPE_ARGUMENT(0)]
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.dns.DnsClient lookup(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 119
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookup:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 120
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.lang.String> lookup(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 125
            aload 0 /* this */
            aload 1 /* name */
            iconst_2
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.A:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            dup
            iconst_1
            getstatic io.netty.handler.codec.dns.DnsRecordType.AAAA:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupSingle:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/String;>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN, location=[TYPE_ARGUMENT(0)]
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.dns.DnsClient resolveA(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<java.lang.String>>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 130
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolveA:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 131
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.util.List<java.lang.String>> resolveA(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 136
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.A:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/util/List<Ljava/lang/String;>;>;
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.dns.DnsClient resolveCNAME(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<java.lang.String>>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 141
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolveCNAME:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 142
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.util.List<java.lang.String>> resolveCNAME(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 147
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.CNAME:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/util/List<Ljava/lang/String;>;>;
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.dns.DnsClient resolveMX(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<io.vertx.core.dns.MxRecord>>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 152
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolveMX:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 153
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/core/dns/MxRecord;>;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/core/dns/MxRecord;>;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.util.List<io.vertx.core.dns.MxRecord>> resolveMX(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 158
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.MX:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/util/List<Lio/vertx/core/dns/MxRecord;>;>;
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.Future<java.util.List<java.lang.String>> resolveTXT(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 163
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.TXT:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            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;
                  io/vertx/core/dns/impl/DnsClientImpl.lambda$0(Ljava/util/List;)Ljava/util/List; (6)
                  (Ljava/util/List;)Ljava/util/List;
            invokeinterface io.vertx.core.Future.map:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/util/List<Ljava/lang/String;>;>;
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.dns.DnsClient resolveTXT(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<java.lang.String>>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 174
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolveTXT:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 175
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.lang.String> resolvePTR(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 180
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.PTR:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupSingle:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/String;>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN, location=[TYPE_ARGUMENT(0)]
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.dns.DnsClient resolvePTR(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 185
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolvePTR:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 186
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.dns.DnsClient resolveAAAA(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<java.lang.String>>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 191
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolveAAAA:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 192
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.util.List<java.lang.String>> resolveAAAA(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 197
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.AAAA:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/util/List<Ljava/lang/String;>;>;
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.Future<java.util.List<java.lang.String>> resolveNS(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 202
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.NS:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/util/List<Ljava/lang/String;>;>;
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.dns.DnsClient resolveNS(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<java.lang.String>>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 207
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolveNS:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 208
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Ljava/lang/String;>;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.util.List<io.vertx.core.dns.SrvRecord>> resolveSRV(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
         0: .line 213
            aload 0 /* this */
            aload 1 /* name */
            iconst_1
            anewarray io.netty.handler.codec.dns.DnsRecordType
            dup
            iconst_0
            getstatic io.netty.handler.codec.dns.DnsRecordType.SRV:Lio/netty/handler/codec/dns/DnsRecordType;
            aastore
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            areturn
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1  name  Ljava/lang/String;
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/util/List<Lio/vertx/core/dns/SrvRecord;>;>;
    MethodParameters:
      Name  Flags
      name  

  public io.vertx.core.dns.DnsClient resolveSRV(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<io.vertx.core.dns.SrvRecord>>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.vertx.core.Handler handler
         0: .line 218
            aload 0 /* this */
            aload 1 /* name */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolveSRV:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 219
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1     name  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/core/dns/SrvRecord;>;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<Lio/vertx/core/dns/SrvRecord;>;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      name     
      handler  

  public io.vertx.core.Future<java.lang.String> reverseLookup(java.lang.String);
    descriptor: (Ljava/lang/String;)Lio/vertx/core/Future;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String address
         0: .line 225
            aload 1 /* address */
            invokestatic java.net.InetAddress.getByName:(Ljava/lang/String;)Ljava/net/InetAddress;
            astore 2 /* inetAddress */
        start local 2 // java.net.InetAddress inetAddress
         1: .line 226
            aload 2 /* inetAddress */
            invokevirtual java.net.InetAddress.getAddress:()[B
            astore 3 /* addr */
        start local 3 // byte[] addr
         2: .line 228
            new java.lang.StringBuilder
            dup
            bipush 64
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 4 /* reverseName */
        start local 4 // java.lang.StringBuilder reverseName
         3: .line 229
            aload 2 /* inetAddress */
            instanceof java.net.Inet4Address
            ifeq 9
         4: .line 231
            aload 4 /* reverseName */
            aload 3 /* addr */
            iconst_3
            baload
            sipush 255
            iand
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 232
            aload 3 /* addr */
            iconst_2
            baload
            sipush 255
            iand
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 233
            aload 3 /* addr */
            iconst_1
            baload
            sipush 255
            iand
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 234
            aload 3 /* addr */
            iconst_0
            baload
            sipush 255
            iand
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         8: .line 235
            goto 18
         9: .line 237
      StackMap locals: java.net.InetAddress byte[] java.lang.StringBuilder
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        10: goto 17
        11: .line 238
      StackMap locals: int
      StackMap stack:
            aload 4 /* reverseName */
            getstatic io.vertx.core.dns.impl.DnsClientImpl.HEX_TABLE:[C
            aload 3 /* addr */
            bipush 15
            iload 5 /* i */
            isub
            baload
            bipush 15
            iand
            caload
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        12: .line 239
            aload 4 /* reverseName */
            ldc "."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        13: .line 240
            aload 4 /* reverseName */
            getstatic io.vertx.core.dns.impl.DnsClientImpl.HEX_TABLE:[C
            aload 3 /* addr */
            bipush 15
            iload 5 /* i */
            isub
            baload
            iconst_4
            ishr
            bipush 15
            iand
            caload
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        14: .line 241
            iload 5 /* i */
            bipush 15
            if_icmpeq 16
        15: .line 242
            aload 4 /* reverseName */
            ldc "."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        16: .line 237
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 5 /* i */
            bipush 16
            if_icmplt 11
        end local 5 // int i
        18: .line 246
      StackMap locals:
      StackMap stack:
            aload 4 /* reverseName */
            ldc ".in-addr.arpa"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        19: .line 248
            aload 0 /* this */
            aload 4 /* reverseName */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolvePTR:(Ljava/lang/String;)Lio/vertx/core/Future;
        20: areturn
        end local 4 // java.lang.StringBuilder reverseName
        end local 3 // byte[] addr
        end local 2 // java.net.InetAddress inetAddress
        21: .line 249
      StackMap locals: io.vertx.core.dns.impl.DnsClientImpl java.lang.String
      StackMap stack: java.net.UnknownHostException
            astore 2 /* e */
        start local 2 // java.net.UnknownHostException e
        22: .line 252
            aload 2 /* e */
            invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
            areturn
        end local 2 // java.net.UnknownHostException e
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   23     0         this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0   23     1      address  Ljava/lang/String;
            1   21     2  inetAddress  Ljava/net/InetAddress;
            2   21     3         addr  [B
            3   21     4  reverseName  Ljava/lang/StringBuilder;
           10   18     5            i  I
           22   23     2            e  Ljava/net/UnknownHostException;
      Exception table:
        from    to  target  type
           0    20      21  Class java.net.UnknownHostException
    Signature: (Ljava/lang/String;)Lio/vertx/core/Future<Ljava/lang/String;>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN, location=[TYPE_ARGUMENT(0)]
        io.vertx.codegen.annotations.Nullable()
    MethodParameters:
         Name  Flags
      address  

  public io.vertx.core.dns.DnsClient reverseLookup(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.String>>);
    descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String address
        start local 2 // io.vertx.core.Handler handler
         0: .line 258
            aload 0 /* this */
            aload 1 /* address */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.reverseLookup:(Ljava/lang/String;)Lio/vertx/core/Future;
            aload 2 /* handler */
            invokeinterface io.vertx.core.Future.onComplete:(Lio/vertx/core/Handler;)Lio/vertx/core/Future;
            pop
         1: .line 259
            aload 0 /* this */
            areturn
        end local 2 // io.vertx.core.Handler handler
        end local 1 // java.lang.String address
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1  address  Ljava/lang/String;
            0    2     2  handler  Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
    Signature: (Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;)Lio/vertx/core/dns/DnsClient;
    MethodParameters:
         Name  Flags
      address  
      handler  

  private <T> io.vertx.core.Future<T> lookupSingle(java.lang.String, io.netty.handler.codec.dns.DnsRecordType[]);
    descriptor: (Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
    flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.netty.handler.codec.dns.DnsRecordType[] types
         0: .line 263
            aload 0 /* this */
            aload 1 /* name */
            aload 2 /* types */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
            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;
                  io/vertx/core/dns/impl/DnsClientImpl.lambda$1(Ljava/util/List;)Ljava/lang/Object; (6)
                  (Ljava/util/List;)Ljava/lang/Object;
            invokeinterface io.vertx.core.Future.map:(Ljava/util/function/Function;)Lio/vertx/core/Future;
            areturn
        end local 2 // io.netty.handler.codec.dns.DnsRecordType[] types
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1   name  Ljava/lang/String;
            0    1     2  types  [Lio/netty/handler/codec/dns/DnsRecordType;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future<TT;>;
    MethodParameters:
       Name  Flags
      name   
      types  

  private <T> io.vertx.core.Future<java.util.List<T>> lookupList(java.lang.String, io.netty.handler.codec.dns.DnsRecordType[]);
    descriptor: (Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future;
    flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // java.lang.String name
        start local 2 // io.netty.handler.codec.dns.DnsRecordType[] types
         0: .line 268
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.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 269
            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.impl.future.PromiseInternal promise
         2: .line 270
            aload 1 /* name */
            ldc "no null name accepted"
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         3: .line 271
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.actualCtx:Lio/vertx/core/impl/ContextInternal;
            invokeinterface io.vertx.core.impl.ContextInternal.nettyEventLoop:()Lio/netty/channel/EventLoop;
            astore 5 /* el */
        start local 5 // io.netty.channel.EventLoop el
         4: .line 272
            new io.vertx.core.dns.impl.DnsClientImpl$Query
            dup
            aload 0 /* this */
            aload 1 /* name */
            aload 2 /* types */
            invokespecial io.vertx.core.dns.impl.DnsClientImpl$Query.<init>:(Lio/vertx/core/dns/impl/DnsClientImpl;Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)V
            astore 6 /* query */
        start local 6 // io.vertx.core.dns.impl.DnsClientImpl$Query query
         5: .line 273
            aload 6 /* query */
            getfield io.vertx.core.dns.impl.DnsClientImpl$Query.promise:Lio/netty/util/concurrent/Promise;
            aload 4 /* promise */
            invokeinterface io.netty.util.concurrent.Promise.addListener:(Lio/netty/util/concurrent/GenericFutureListener;)Lio/netty/util/concurrent/Promise;
            pop
         6: .line 274
            aload 5 /* el */
            invokeinterface io.netty.channel.EventLoop.inEventLoop:()Z
            ifeq 9
         7: .line 275
            aload 6 /* query */
            invokevirtual io.vertx.core.dns.impl.DnsClientImpl$Query.run:()V
         8: .line 276
            goto 10
         9: .line 277
      StackMap locals: io.vertx.core.dns.impl.DnsClientImpl java.lang.String io.netty.handler.codec.dns.DnsRecordType[] io.vertx.core.impl.ContextInternal io.vertx.core.impl.future.PromiseInternal io.netty.channel.EventLoop io.vertx.core.dns.impl.DnsClientImpl$Query
      StackMap stack:
            aload 5 /* el */
            aload 6 /* query */
            dup
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            pop
            invokedynamic run(Lio/vertx/core/dns/impl/DnsClientImpl$Query;)Ljava/lang/Runnable;
              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:
                  ()V
                  io/vertx/core/dns/impl/DnsClientImpl$Query.run()V (5)
                  ()V
            invokeinterface io.netty.channel.EventLoop.execute:(Ljava/lang/Runnable;)V
        10: .line 279
      StackMap locals:
      StackMap stack:
            aload 4 /* promise */
            invokeinterface io.vertx.core.impl.future.PromiseInternal.future:()Lio/vertx/core/Future;
            areturn
        end local 6 // io.vertx.core.dns.impl.DnsClientImpl$Query query
        end local 5 // io.netty.channel.EventLoop el
        end local 4 // io.vertx.core.impl.future.PromiseInternal promise
        end local 3 // io.vertx.core.impl.ContextInternal ctx
        end local 2 // io.netty.handler.codec.dns.DnsRecordType[] types
        end local 1 // java.lang.String name
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0   11     1     name  Ljava/lang/String;
            0   11     2    types  [Lio/netty/handler/codec/dns/DnsRecordType;
            1   11     3      ctx  Lio/vertx/core/impl/ContextInternal;
            2   11     4  promise  Lio/vertx/core/impl/future/PromiseInternal<Ljava/util/List<TT;>;>;
            4   11     5       el  Lio/netty/channel/EventLoop;
            5   11     6    query  Lio/vertx/core/dns/impl/DnsClientImpl$Query;
    Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;)Lio/vertx/core/Future<Ljava/util/List<TT;>;>;
    MethodParameters:
       Name  Flags
      name   
      types  

  private long dnsMessageId(int, java.lang.String);
    descriptor: (ILjava/lang/String;)J
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // int id
        start local 2 // java.lang.String query
         0: .line 283
            aload 2 /* query */
            invokevirtual java.lang.String.hashCode:()I
            i2l
            bipush 16
            lshl
            iload 1 /* id */
            ldc 65535
            iand
            i2l
            ladd
            lreturn
        end local 2 // java.lang.String query
        end local 1 // int id
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    1     1     id  I
            0    1     2  query  Ljava/lang/String;
    MethodParameters:
       Name  Flags
      id     
      query  

  public void inProgressQueries(io.vertx.core.Handler<java.lang.Integer>);
    descriptor: (Lio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 1 // io.vertx.core.Handler handler
         0: .line 288
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.actualCtx:Lio/vertx/core/impl/ContextInternal;
            aload 0 /* this */
            aload 1 /* handler */
            invokedynamic handle(Lio/vertx/core/dns/impl/DnsClientImpl;Lio/vertx/core/Handler;)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/dns/impl/DnsClientImpl.lambda$3(Lio/vertx/core/Handler;Ljava/lang/Void;)V (7)
                  (Ljava/lang/Void;)V
            invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
         1: .line 291
            return
        end local 1 // io.vertx.core.Handler handler
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     1  handler  Lio/vertx/core/Handler<Ljava/lang/Integer;>;
    Signature: (Lio/vertx/core/Handler<Ljava/lang/Integer;>;)V
    MethodParameters:
         Name  Flags
      handler  

  private static java.util.List lambda$0(java.util.List);
    descriptor: (Ljava/util/List;)Ljava/util/List;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // java.util.List records
         0: .line 164
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* txts */
        start local 1 // java.util.List txts
         1: .line 165
            aload 0 /* records */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: java.util.List java.util.List top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.List
            astore 2 /* txt */
        start local 2 // java.util.List txt
         3: .line 166
            aload 1 /* txts */
            aload 2 /* txt */
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
        end local 2 // java.util.List txt
         4: .line 165
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 168
            aload 1 /* txts */
            areturn
        end local 1 // java.util.List txts
        end local 0 // java.util.List records
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    6     0  records  Ljava/util/List<Ljava/util/List<Ljava/lang/String;>;>;
            1    6     1     txts  Ljava/util/List<Ljava/lang/String;>;
            3    4     2      txt  Ljava/util/List<Ljava/lang/String;>;

  private static java.lang.Object lambda$1(java.util.List);
    descriptor: (Ljava/util/List;)Ljava/lang/Object;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.util.List result
         0: .line 263
            aload 0 /* result */
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* result */
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // java.util.List result
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0  result  Ljava/util/List<TT;>;

  private void lambda$3(io.vertx.core.Handler, java.lang.Void);
    descriptor: (Lio/vertx/core/Handler;Ljava/lang/Void;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.vertx.core.dns.impl.DnsClientImpl this
        start local 2 // java.lang.Void v
         0: .line 289
            aload 1
            aload 0 /* this */
            getfield io.vertx.core.dns.impl.DnsClientImpl.inProgressMap:Lio/netty/util/collection/LongObjectMap;
            invokeinterface io.netty.util.collection.LongObjectMap.size:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
         1: .line 290
            return
        end local 2 // java.lang.Void v
        end local 0 // io.vertx.core.dns.impl.DnsClientImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/core/dns/impl/DnsClientImpl;
            0    2     2     v  Ljava/lang/Void;
}
SourceFile: "DnsClientImpl.java"
NestMembers:
  io.vertx.core.dns.impl.DnsClientImpl$1  io.vertx.core.dns.impl.DnsClientImpl$Query
InnerClasses:
  io.vertx.core.dns.impl.DnsClientImpl$1
  private Query = io.vertx.core.dns.impl.DnsClientImpl$Query of io.vertx.core.dns.impl.DnsClientImpl
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles