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

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

Introduction

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

Prototype

@Nullable
String target();

Source Link

Document

Returns the name of the host for the service.

Usage

From source file:examples.DNSExamples.java

License:Open Source License

public void example13(SrvRecord record) {
    record.priority();//from  w  w  w.  j  a v  a 2s.co m
    record.name();
    record.weight();
    record.port();
    record.protocol();
    record.service();
    record.target();
}