public class DefaultDnsRawRecord extends AbstractDnsRecord implements DnsRawRecord
DnsRawRecord
implementation.CLASS_ANY, CLASS_CHAOS, CLASS_CSNET, CLASS_HESIOD, CLASS_IN, CLASS_NONE
Constructor and Description |
---|
DefaultDnsRawRecord(String name,
DnsRecordType type,
int dnsClass,
long timeToLive,
ByteBuf content)
Creates a new record.
|
DefaultDnsRawRecord(String name,
DnsRecordType type,
long timeToLive,
ByteBuf content)
Creates a new
IN-class record. |
Modifier and Type | Method and Description |
---|---|
ByteBuf |
content()
Return the data which is held by this
ByteBufHolder . |
DnsRawRecord |
copy()
Creates a deep copy of this
ByteBufHolder . |
DnsRawRecord |
duplicate()
Duplicates this
ByteBufHolder . |
int |
refCnt()
Returns the reference count of this object.
|
boolean |
release()
Decreases the reference count by
1 and deallocates this object if the reference count reaches at
0 . |
boolean |
release(int decrement)
Decreases the reference count by the specified
decrement and deallocates this object if the reference
count reaches at 0 . |
DnsRawRecord |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content . |
DnsRawRecord |
retain()
Increases the reference count by
1 . |
DnsRawRecord |
retain(int increment)
Increases the reference count by the specified
increment . |
DnsRawRecord |
retainedDuplicate()
Duplicates this
ByteBufHolder . |
String |
toString() |
DnsRawRecord |
touch()
Records the current access location of this object for debugging purposes.
|
DnsRawRecord |
touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
dnsClass, equals, hashCode, name, timeToLive, type
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
dnsClass, name, timeToLive, type
public DefaultDnsRawRecord(String name, DnsRecordType type, long timeToLive, ByteBuf content)
IN-class
record.name
- the domain nametype
- the type of the recordtimeToLive
- the TTL value of the recordpublic DefaultDnsRawRecord(String name, DnsRecordType type, int dnsClass, long timeToLive, ByteBuf content)
name
- the domain nametype
- the type of the recorddnsClass
- the class of the record, usually one of the following:
timeToLive
- the TTL value of the recordpublic ByteBuf content()
ByteBufHolder
ByteBufHolder
.content
in interface ByteBufHolder
public DnsRawRecord copy()
ByteBufHolder
ByteBufHolder
.copy
in interface ByteBufHolder
copy
in interface DnsRawRecord
public DnsRawRecord duplicate()
ByteBufHolder
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.duplicate
in interface ByteBufHolder
duplicate
in interface DnsRawRecord
public DnsRawRecord retainedDuplicate()
ByteBufHolder
ByteBufHolder
. This method returns a retained duplicate unlike ByteBufHolder.duplicate()
.retainedDuplicate
in interface ByteBufHolder
retainedDuplicate
in interface DnsRawRecord
ByteBuf.retainedDuplicate()
public DnsRawRecord replace(ByteBuf content)
ByteBufHolder
ByteBufHolder
which contains the specified content
.replace
in interface ByteBufHolder
replace
in interface DnsRawRecord
public int refCnt()
ReferenceCounted
0
, it means this object has been deallocated.refCnt
in interface ReferenceCounted
public DnsRawRecord retain()
ReferenceCounted
1
.retain
in interface ByteBufHolder
retain
in interface DnsRawRecord
retain
in interface ReferenceCounted
public DnsRawRecord retain(int increment)
ReferenceCounted
increment
.retain
in interface ByteBufHolder
retain
in interface DnsRawRecord
retain
in interface ReferenceCounted
public boolean release()
ReferenceCounted
1
and deallocates this object if the reference count reaches at
0
.release
in interface ReferenceCounted
true
if and only if the reference count became 0
and this object has been deallocatedpublic boolean release(int decrement)
ReferenceCounted
decrement
and deallocates this object if the reference
count reaches at 0
.release
in interface ReferenceCounted
true
if and only if the reference count became 0
and this object has been deallocatedpublic DnsRawRecord touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
in interface ByteBufHolder
touch
in interface DnsRawRecord
touch
in interface ReferenceCounted
public DnsRawRecord touch(Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
in interface ByteBufHolder
touch
in interface DnsRawRecord
touch
in interface ReferenceCounted
public String toString()
toString
in class AbstractDnsRecord
Copyright © 2008–2024 The Netty Project. All rights reserved.