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

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

Introduction

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

Prototype

int priority();

Source Link

Document

The priority of the MX record.

Usage

From source file:examples.DNSExamples.java

License:Open Source License

public void example9(MxRecord record) {
    record.priority();
    record.name();
}