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.Vertx vertx;
descriptor: Lio/vertx/core/Vertx;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
private final io.netty.util.collection.IntObjectMap<io.vertx.core.dns.impl.DnsClientImpl$Query> inProgressMap;
descriptor: Lio/netty/util/collection/IntObjectMap;
flags: (0x0012) ACC_PRIVATE, ACC_FINAL
Signature: Lio/netty/util/collection/IntObjectMap<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: 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=6, args_size=3
start local 0 start local 1 start local 2 0: aload 0
invokespecial java.lang.Object.<init>:()V
1: aload 0
new io.netty.util.collection.IntObjectHashMap
dup
invokespecial io.netty.util.collection.IntObjectHashMap.<init>:()V
putfield io.vertx.core.dns.impl.DnsClientImpl.inProgressMap:Lio/netty/util/collection/IntObjectMap;
2: aload 2
ldc "no null options accepted"
invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
pop
3: aload 2
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: aload 0
new io.vertx.core.dns.DnsClientOptions
dup
aload 2
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: aload 1
invokeinterface io.vertx.core.impl.VertxInternal.getContext:()Lio/vertx/core/impl/ContextInternal;
astore 3
start local 3 6: aload 3
ifnull 8
aload 3
invokeinterface io.vertx.core.impl.ContextInternal.isMultiThreadedWorkerContext:()Z
ifeq 8
7: new java.lang.IllegalStateException
dup
ldc "Cannot use DnsClient in a multi-threaded worker verticle"
invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
athrow
8: StackMap locals: io.vertx.core.dns.impl.DnsClientImpl io.vertx.core.impl.VertxInternal io.vertx.core.dns.DnsClientOptions io.vertx.core.impl.ContextInternal
StackMap stack:
aload 0
new java.net.InetSocketAddress
dup
aload 2
invokevirtual io.vertx.core.dns.DnsClientOptions.getHost:()Ljava/lang/String;
aload 2
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;
9: aload 0
getfield io.vertx.core.dns.impl.DnsClientImpl.dnsServer:Ljava/net/InetSocketAddress;
invokevirtual java.net.InetSocketAddress.isUnresolved:()Z
ifeq 11
10: 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
11: StackMap locals:
StackMap stack:
aload 0
aload 1
putfield io.vertx.core.dns.impl.DnsClientImpl.vertx:Lio/vertx/core/Vertx;
12: aload 1
invokeinterface io.vertx.core.impl.VertxInternal.transport:()Lio/vertx/core/net/impl/transport/Transport;
astore 4
start local 4 13: aload 0
aload 1
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;
14: aload 0
aload 4
aload 0
getfield io.vertx.core.dns.impl.DnsClientImpl.dnsServer:Ljava/net/InetSocketAddress;
invokevirtual java.net.InetSocketAddress.getAddress:()Ljava/net/InetAddress;
instanceof java.net.Inet4Address
ifeq 15
getstatic io.netty.channel.socket.InternetProtocolFamily.IPv4:Lio/netty/channel/socket/InternetProtocolFamily;
goto 16
StackMap locals: io.vertx.core.dns.impl.DnsClientImpl io.vertx.core.impl.VertxInternal io.vertx.core.dns.DnsClientOptions io.vertx.core.impl.ContextInternal io.vertx.core.net.impl.transport.Transport
StackMap stack: io.vertx.core.dns.impl.DnsClientImpl io.vertx.core.net.impl.transport.Transport
15: 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.impl.ContextInternal 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
16: 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;
17: aload 0
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
18: aload 0
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 5
start local 5 19: aload 5
iconst_1
invokeinterface io.netty.channel.MaxMessagesRecvByteBufAllocator.maxMessagesPerRead:(I)Lio/netty/channel/MaxMessagesRecvByteBufAllocator;
pop
20: aload 0
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
21: aload 0
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
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
22: aload 2
invokevirtual io.vertx.core.dns.DnsClientOptions.getLogActivity:()Z
ifeq 24
23: aload 0
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
24: StackMap locals: io.netty.channel.MaxMessagesRecvByteBufAllocator
StackMap stack:
aload 0
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
25: aload 0
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
26: aload 0
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
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
27: return
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 28 0 this Lio/vertx/core/dns/impl/DnsClientImpl;
0 28 1 vertx Lio/vertx/core/impl/VertxInternal;
0 28 2 options Lio/vertx/core/dns/DnsClientOptions;
6 28 3 creatingContext Lio/vertx/core/impl/ContextInternal;
13 28 4 transport Lio/vertx/core/net/impl/transport/Transport;
19 28 5 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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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 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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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 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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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 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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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.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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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.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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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.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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
new io.vertx.core.dns.impl.DnsClientImpl$2
dup
aload 0
aload 2
invokespecial io.vertx.core.dns.impl.DnsClientImpl$2.<init>:(Lio/vertx/core/dns/impl/DnsClientImpl;Lio/vertx/core/Handler;)V
iconst_1
anewarray io.netty.handler.codec.dns.DnsRecordType
dup
iconst_0
1: getstatic io.netty.handler.codec.dns.DnsRecordType.TXT:Lio/netty/handler/codec/dns/DnsRecordType;
aastore
2: invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;Lio/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
3: aload 0
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 4 0 this Lio/vertx/core/dns/impl/DnsClientImpl;
0 4 1 name Ljava/lang/String;
0 4 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.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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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.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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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.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=7, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
aload 2
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/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: aload 0
areturn
end local 2 end local 1 end local 0 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.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=5, locals=7, args_size=3
start local 0 start local 1 start local 2 0: aload 1
invokestatic java.net.InetAddress.getByName:(Ljava/lang/String;)Ljava/net/InetAddress;
astore 3
start local 3 1: aload 3
invokevirtual java.net.InetAddress.getAddress:()[B
astore 4
start local 4 2: new java.lang.StringBuilder
dup
bipush 64
invokespecial java.lang.StringBuilder.<init>:(I)V
astore 5
start local 5 3: aload 3
instanceof java.net.Inet4Address
ifeq 9
4: aload 5
aload 4
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: aload 4
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: aload 4
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: aload 4
iconst_0
baload
sipush 255
iand
invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
pop
8: goto 18
9: StackMap locals: java.net.InetAddress byte[] java.lang.StringBuilder
StackMap stack:
iconst_0
istore 6
start local 6 10: goto 17
11: StackMap locals: int
StackMap stack:
aload 5
getstatic io.vertx.core.dns.impl.DnsClientImpl.HEX_TABLE:[C
aload 4
bipush 15
iload 6
isub
baload
bipush 15
iand
caload
invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
pop
12: aload 5
ldc "."
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
13: aload 5
getstatic io.vertx.core.dns.impl.DnsClientImpl.HEX_TABLE:[C
aload 4
bipush 15
iload 6
isub
baload
iconst_4
ishr
bipush 15
iand
caload
invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
pop
14: iload 6
bipush 15
if_icmpeq 16
15: aload 5
ldc "."
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
16: StackMap locals:
StackMap stack:
iinc 6 1
StackMap locals:
StackMap stack:
17: iload 6
bipush 16
if_icmplt 11
end local 6 18: StackMap locals:
StackMap stack:
aload 5
ldc ".in-addr.arpa"
invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
pop
19: aload 0
aload 5
invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
aload 2
invokevirtual io.vertx.core.dns.impl.DnsClientImpl.resolvePTR:(Ljava/lang/String;Lio/vertx/core/Handler;)Lio/vertx/core/dns/DnsClient;
20: areturn
end local 5 end local 4 end local 3 21: StackMap locals: io.vertx.core.dns.impl.DnsClientImpl java.lang.String io.vertx.core.Handler
StackMap stack: java.net.UnknownHostException
astore 3
start local 3 22: aload 0
getfield io.vertx.core.dns.impl.DnsClientImpl.actualCtx:Lio/vertx/core/impl/ContextInternal;
aload 2
aload 3
invokedynamic handle(Lio/vertx/core/Handler;Ljava/net/UnknownHostException;)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$0(Lio/vertx/core/Handler;Ljava/net/UnknownHostException;Ljava/lang/Void;)V (6)
(Ljava/lang/Void;)V
invokeinterface io.vertx.core.impl.ContextInternal.runOnContext:(Lio/vertx/core/Handler;)V
end local 3 23: aload 0
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 24 0 this Lio/vertx/core/dns/impl/DnsClientImpl;
0 24 1 address Ljava/lang/String;
0 24 2 handler Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/lang/String;>;>;
1 21 3 inetAddress Ljava/net/InetAddress;
2 21 4 addr [B
3 21 5 reverseName Ljava/lang/StringBuilder;
10 18 6 i I
22 23 3 e Ljava/net/UnknownHostException;
Exception table:
from to target type
0 20 21 Class java.net.UnknownHostException
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> void lookupSingle(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<T>>, io.netty.handler.codec.dns.DnsRecordType[]);
descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
Code:
stack=4, locals=4, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 0
aload 1
aload 2
invokedynamic handle(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$1(Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V (6)
(Lio/vertx/core/AsyncResult;)V
aload 3
invokevirtual io.vertx.core.dns.impl.DnsClientImpl.lookupList:(Ljava/lang/String;Lio/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
1: return
end local 3 end local 2 end local 1 end local 0 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<TT;>;>;
0 2 3 types [Lio/netty/handler/codec/dns/DnsRecordType;
Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<TT;>;>;[Lio/netty/handler/codec/dns/DnsRecordType;)V
MethodParameters:
Name Flags
name
handler
types
private <T> void lookupList(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<T>>>, io.netty.handler.codec.dns.DnsRecordType[]);
descriptor: (Ljava/lang/String;Lio/vertx/core/Handler;[Lio/netty/handler/codec/dns/DnsRecordType;)V
flags: (0x0082) ACC_PRIVATE, ACC_VARARGS
Code:
stack=6, locals=5, args_size=4
start local 0 start local 1 start local 2 start local 3 0: aload 1
ldc "no null name accepted"
invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
pop
1: aload 0
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 4
start local 4 2: aload 4
invokeinterface io.netty.channel.EventLoop.inEventLoop:()Z
ifeq 5
3: new io.vertx.core.dns.impl.DnsClientImpl$Query
dup
aload 0
aload 1
aload 3
aload 2
invokespecial io.vertx.core.dns.impl.DnsClientImpl$Query.<init>:(Lio/vertx/core/dns/impl/DnsClientImpl;Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;Lio/vertx/core/Handler;)V
invokevirtual io.vertx.core.dns.impl.DnsClientImpl$Query.run:()V
4: goto 6
5: StackMap locals: io.netty.channel.EventLoop
StackMap stack:
aload 4
aload 0
aload 1
aload 3
aload 2
invokedynamic run(Lio/vertx/core/dns/impl/DnsClientImpl;Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;Lio/vertx/core/Handler;)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.lambda$3(Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;Lio/vertx/core/Handler;)V (7)
()V
invokeinterface io.netty.channel.EventLoop.execute:(Ljava/lang/Runnable;)V
6: StackMap locals:
StackMap stack:
return
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lio/vertx/core/dns/impl/DnsClientImpl;
0 7 1 name Ljava/lang/String;
0 7 2 handler Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<TT;>;>;>;
0 7 3 types [Lio/netty/handler/codec/dns/DnsRecordType;
2 7 4 el Lio/netty/channel/EventLoop;
Signature: <T:Ljava/lang/Object;>(Ljava/lang/String;Lio/vertx/core/Handler<Lio/vertx/core/AsyncResult<Ljava/util/List<TT;>;>;>;[Lio/netty/handler/codec/dns/DnsRecordType;)V
MethodParameters:
Name Flags
name
handler
types
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 start local 1 0: aload 0
getfield io.vertx.core.dns.impl.DnsClientImpl.actualCtx:Lio/vertx/core/impl/ContextInternal;
aload 0
aload 1
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$4(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: return
end local 1 end local 0 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 void lambda$0(io.vertx.core.Handler, java.net.UnknownHostException, java.lang.Void);
descriptor: (Lio/vertx/core/Handler;Ljava/net/UnknownHostException;Ljava/lang/Void;)V
flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
Code:
stack=2, locals=3, args_size=3
start local 2 0: aload 0
aload 1
invokestatic io.vertx.core.Future.failedFuture:(Ljava/lang/Throwable;)Lio/vertx/core/Future;
invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
return
end local 2 LocalVariableTable:
Start End Slot Name Signature
0 1 2 v Ljava/lang/Void;
private static void lambda$1(io.vertx.core.Handler, io.vertx.core.AsyncResult);
descriptor: (Lio/vertx/core/Handler;Lio/vertx/core/AsyncResult;)V
flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
Code:
stack=3, locals=2, args_size=2
start local 1 0: aload 0
aload 1
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$2(Ljava/util/List;)Ljava/lang/Object; (6)
(Ljava/util/List;)Ljava/lang/Object;
invokeinterface io.vertx.core.AsyncResult.map:(Ljava/util/function/Function;)Lio/vertx/core/AsyncResult;
invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
return
end local 1 LocalVariableTable:
Start End Slot Name Signature
0 1 1 ar Lio/vertx/core/AsyncResult<Ljava/util/List<TT;>;>;
private void lambda$3(java.lang.String, io.netty.handler.codec.dns.DnsRecordType[], io.vertx.core.Handler);
descriptor: (Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;Lio/vertx/core/Handler;)V
flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
Code:
stack=6, locals=4, args_size=4
start local 0 0: new io.vertx.core.dns.impl.DnsClientImpl$Query
dup
aload 0
aload 1
aload 2
aload 3
invokespecial io.vertx.core.dns.impl.DnsClientImpl$Query.<init>:(Lio/vertx/core/dns/impl/DnsClientImpl;Ljava/lang/String;[Lio/netty/handler/codec/dns/DnsRecordType;Lio/vertx/core/Handler;)V
invokevirtual io.vertx.core.dns.impl.DnsClientImpl$Query.run:()V
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/dns/impl/DnsClientImpl;
private void lambda$4(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 start local 2 0: aload 1
aload 0
getfield io.vertx.core.dns.impl.DnsClientImpl.inProgressMap:Lio/netty/util/collection/IntObjectMap;
invokeinterface io.netty.util.collection.IntObjectMap.size:()I
invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
invokeinterface io.vertx.core.Handler.handle:(Ljava/lang/Object;)V
1: return
end local 2 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lio/vertx/core/dns/impl/DnsClientImpl;
0 2 2 v Ljava/lang/Void;
private static java.lang.Object lambda$2(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 0: aload 0
invokeinterface java.util.List.isEmpty:()Z
ifeq 1
aconst_null
goto 2
StackMap locals:
StackMap stack:
1: aload 0
iconst_0
invokeinterface java.util.List.get:(I)Ljava/lang/Object;
StackMap locals:
StackMap stack: java.lang.Object
2: areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 result Ljava/util/List<TT;>;
}
SourceFile: "DnsClientImpl.java"
NestMembers:
io.vertx.core.dns.impl.DnsClientImpl$1 io.vertx.core.dns.impl.DnsClientImpl$2 io.vertx.core.dns.impl.DnsClientImpl$Query
InnerClasses:
io.vertx.core.dns.impl.DnsClientImpl$1
io.vertx.core.dns.impl.DnsClientImpl$2
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