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

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

Introduction

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

Prototype

int priority();

Source Link

Document

Returns the priority for this service record.

Usage

From source file:examples.DNSExamples.java

License:Open Source License

public void example13(SrvRecord record) {
    record.priority();
    record.name();/*w w  w .  ja  v a2  s.co  m*/
    record.weight();
    record.port();
    record.protocol();
    record.service();
    record.target();
}