Example usage for io.vertx.core.dns SrvRecord name

List of usage examples for io.vertx.core.dns SrvRecord name

Introduction

In this page you can find the example usage for io.vertx.core.dns SrvRecord name.

Prototype

String name();

Source Link

Document

Returns the name for the server being queried.

Usage

From source file:examples.DNSExamples.java

License:Open Source License

public void example13(SrvRecord record) {
    record.priority();// ww w .  j  ava 2 s.  c om
    record.name();
    record.weight();
    record.port();
    record.protocol();
    record.service();
    record.target();
}