Uses of Class
io.vertx.mutiny.core.dns.DnsClient
Packages that use DnsClient
-
Uses of DnsClient in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return DnsClientModifier and TypeMethodDescriptionVertx.createDnsClient()Create a DNS client to connect to the DNS server configured byVertxOptions.getAddressResolverOptions()Vertx.createDnsClient(int port, String host) Create a DNS client to connect to a DNS server at the specified host and port, with the default query timeout (5 seconds)Vertx.createDnsClient(io.vertx.core.dns.DnsClientOptions options) Create a DNS client to connect to a DNS server -
Uses of DnsClient in io.vertx.mutiny.core.dns
Fields in io.vertx.mutiny.core.dns with type parameters of type DnsClientMethods in io.vertx.mutiny.core.dns that return DnsClientModifier and TypeMethodDescriptionDnsClient.closeAndForget()Close the client.DnsClient.lookup4AndForget(String name) Try to lookup the A (ipv4) record for the given name.DnsClient.lookup6AndForget(String name) Try to lookup the AAAA (ipv6) record for the given name.DnsClient.lookupAndForget(String name) Try to lookup the A (ipv4) or AAAA (ipv6) record for the given name.static DnsClientDnsClient.newInstance(io.vertx.core.dns.DnsClient delegate) Creates a new instance of theDnsClient.DnsClient.resolveAAAAAndForget(String name) Try to resolve all AAAA (ipv6) records for the given name.DnsClient.resolveAAndForget(String name) Try to resolve all A (ipv4) records for the given name.DnsClient.resolveCNAMEAndForget(String name) Try to resolve the CNAME record for the given name.DnsClient.resolveMXAndForget(String name) Try to resolve the MX records for the given name.DnsClient.resolveNSAndForget(String name) Try to resolve the NS records for the given name.DnsClient.resolvePTRAndForget(String name) Try to resolve the PTR record for the given name.DnsClient.resolveSRVAndForget(String name) Try to resolve the SRV records for the given name.DnsClient.resolveTXTAndForget(String name) Try to resolve the TXT records for the given name.DnsClient.reverseLookupAndForget(String ipaddress) Try to do a reverse lookup of an IP address.