vertx / io.vertx.rxjava.core.dns / DnsClient / lookup

lookup

open fun lookup(name: String, handler: Handler<AsyncResult<String>>): DnsClient

Try to lookup the A (ipv4) or AAAA (ipv6) record for the given name. The first found will be used.

Parameters

name - the name to resolve

handler - the io.vertx.rxjava.core.Handler to notify with the io.vertx.rxjava.core.AsyncResult. The handler will get notified with the resolved address if a record was found. If non was found it will get notifed with null. If an error accours it will get failed.

Return
a reference to this, so the API can be used fluently