public final class DnsResource extends DnsEntry implements ByteBufHolder
| Constructor and Description |
|---|
DnsResource(String name,
DnsType type,
DnsClass aClass,
long ttl,
ByteBuf content)
Constructs a resource record.
|
| Modifier and Type | Method and Description |
|---|---|
ByteBuf |
content()
Returns the data contained in this resource record.
|
DnsResource |
copy()
Returns a deep copy of this resource record.
|
DnsResource |
duplicate()
Returns a duplicate of this resource record.
|
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. |
DnsResource |
retain()
Increases the reference count by
1. |
DnsResource |
retain(int increment)
Increases the reference count by the specified
increment. |
long |
timeToLive()
Returns the time to live after reading for this resource record.
|
DnsResource |
touch()
Records the current access location of this object for debugging purposes.
|
DnsResource |
touch(Object hint)
Records the current access location of this object with an additonal arbitrary information for debugging
purposes.
|
public DnsResource(String name, DnsType type, DnsClass aClass, long ttl, ByteBuf content)
name - the domain nametype - the type of record being returnedaClass - the class for this resource recordttl - the time to live after readingcontent - the data contained in this recordpublic long timeToLive()
public ByteBuf content()
content in interface ByteBufHolderpublic DnsResource copy()
copy in interface ByteBufHolderpublic DnsResource duplicate()
duplicate in interface ByteBufHolderpublic int refCnt()
ReferenceCounted0, it means this object has been deallocated.refCnt in interface ReferenceCountedpublic DnsResource retain()
ReferenceCounted1.retain in interface ByteBufHolderretain in interface ReferenceCountedpublic DnsResource retain(int increment)
ReferenceCountedincrement.retain in interface ByteBufHolderretain in interface ReferenceCountedpublic boolean release()
ReferenceCounted1 and deallocates this object if the reference count reaches at
0.release in interface ReferenceCountedtrue if and only if the reference count became 0 and this object has been deallocatedpublic boolean release(int decrement)
ReferenceCounteddecrement and deallocates this object if the reference
count reaches at 0.release in interface ReferenceCountedtrue if and only if the reference count became 0 and this object has been deallocatedpublic DnsResource touch()
ReferenceCountedResourceLeakDetector. This method is a shortcut to touch(null).touch in interface ByteBufHoldertouch in interface ReferenceCountedpublic DnsResource touch(Object hint)
ReferenceCountedResourceLeakDetector.touch in interface ByteBufHoldertouch in interface ReferenceCountedCopyright © 2008–2015 The Netty Project. All rights reserved.