Example usage for io.netty.handler.codec.dns DnsRecordType NS

List of usage examples for io.netty.handler.codec.dns DnsRecordType NS

Introduction

In this page you can find the example usage for io.netty.handler.codec.dns DnsRecordType NS.

Prototype

DnsRecordType NS

To view the source code for io.netty.handler.codec.dns DnsRecordType NS.

Click Source Link

Document

Name server record RFC 1035 Delegates a DNS zone to use the given authoritative name servers

Usage

From source file:io.vertx.core.dns.impl.DnsClientImpl.java

License:Open Source License

@Override
public DnsClient resolveNS(String name, Handler<AsyncResult<List<String>>> handler) {
    lookupList(name, handler, DnsRecordType.NS);
    return this;
}