Package io.vertx.mutiny.core.dns
Class SrvRecord
- java.lang.Object
-
- io.vertx.mutiny.core.dns.SrvRecord
-
public class SrvRecord extends Object
Represent a Service-Record (SRV) which was resolved for a domain. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<SrvRecord>
__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
io.vertx.core.dns.SrvRecord
getDelegate()
int
hashCode()
String
name()
static SrvRecord
newInstance(io.vertx.core.dns.SrvRecord arg)
int
port()
int
priority()
String
protocol()
String
service()
String
target()
String
toString()
int
weight()
-
-
-
Constructor Detail
-
SrvRecord
public SrvRecord(io.vertx.core.dns.SrvRecord delegate)
-
SrvRecord
public SrvRecord(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.core.dns.SrvRecord getDelegate()
-
priority
public int priority()
- Returns:
-
weight
public int weight()
- Returns:
-
port
public int port()
- Returns:
-
name
public String name()
- Returns:
-
protocol
public String protocol()
- Returns:
-
service
public String service()
- Returns:
-
target
public String target()
- Returns:
-
newInstance
public static SrvRecord newInstance(io.vertx.core.dns.SrvRecord arg)
-
-