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

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

Introduction

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

Prototype

DnsRecordType PTR

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

Click Source Link

Document

Pointer record RFC 1035 Pointer to a canonical name.

Usage

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

License:Open Source License

@Override
public DnsClient resolvePTR(String name, Handler<AsyncResult<String>> handler) {
    lookupSingle(name, handler, DnsRecordType.PTR);
    return this;
}