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

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

Introduction

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

Prototype

String service();

Source Link

Document

Returns the service's name (i.e.

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  2  s .  c  o  m*/
    record.name();
    record.weight();
    record.port();
    record.protocol();
    record.service();
    record.target();
}