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

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

Introduction

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

Prototype

String name();

Source Link

Document

The name of the MX record

Usage

From source file:examples.DNSExamples.java

License:Open Source License

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