@UnstableApi public final class DefaultLastBulkStringRedisContent extends DefaultBulkStringRedisContent implements LastBulkStringRedisContent
LastBulkStringRedisContent
.EMPTY_LAST_CONTENT
Constructor and Description |
---|
DefaultLastBulkStringRedisContent(ByteBuf content)
Creates a
DefaultLastBulkStringRedisContent for the given content . |
Modifier and Type | Method and Description |
---|---|
LastBulkStringRedisContent |
copy()
Creates a deep copy of this
ByteBufHolder . |
LastBulkStringRedisContent |
duplicate()
Duplicates this
ByteBufHolder . |
LastBulkStringRedisContent |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content . |
LastBulkStringRedisContent |
retain()
Increases the reference count by
1 . |
LastBulkStringRedisContent |
retain(int increment)
Increases the reference count by the specified
increment . |
LastBulkStringRedisContent |
retainedDuplicate()
Duplicates this
ByteBufHolder . |
LastBulkStringRedisContent |
touch()
Records the current access location of this object for debugging purposes.
|
LastBulkStringRedisContent |
touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
toString
content, contentToString, equals, hashCode, refCnt, release, release
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
content
refCnt, release, release
public DefaultLastBulkStringRedisContent(ByteBuf content)
DefaultLastBulkStringRedisContent
for the given content
.content
- the content, can be null
.public LastBulkStringRedisContent copy()
DefaultByteBufHolder
ByteBufHolder
.
This method calls replace(content().copy())
by default.
copy
in interface ByteBufHolder
copy
in interface BulkStringRedisContent
copy
in interface LastBulkStringRedisContent
copy
in class DefaultBulkStringRedisContent
public LastBulkStringRedisContent duplicate()
DefaultByteBufHolder
ByteBufHolder
. Be aware that this will not automatically call ByteBufHolder.retain()
.
This method calls replace(content().duplicate())
by default.
duplicate
in interface ByteBufHolder
duplicate
in interface BulkStringRedisContent
duplicate
in interface LastBulkStringRedisContent
duplicate
in class DefaultBulkStringRedisContent
public LastBulkStringRedisContent retainedDuplicate()
DefaultByteBufHolder
ByteBufHolder
. This method returns a retained duplicate unlike ByteBufHolder.duplicate()
.
This method calls replace(content().retainedDuplicate())
by default.
retainedDuplicate
in interface ByteBufHolder
retainedDuplicate
in interface BulkStringRedisContent
retainedDuplicate
in interface LastBulkStringRedisContent
retainedDuplicate
in class DefaultBulkStringRedisContent
ByteBuf.retainedDuplicate()
public LastBulkStringRedisContent replace(ByteBuf content)
DefaultByteBufHolder
ByteBufHolder
which contains the specified content
.
Override this method to return a new instance of this object whose content is set to the specified
content
. The default implementation of DefaultByteBufHolder.copy()
, DefaultByteBufHolder.duplicate()
and
DefaultByteBufHolder.retainedDuplicate()
invokes this method to create a copy.
replace
in interface ByteBufHolder
replace
in interface BulkStringRedisContent
replace
in interface LastBulkStringRedisContent
replace
in class DefaultBulkStringRedisContent
public LastBulkStringRedisContent retain()
ReferenceCounted
1
.retain
in interface ByteBufHolder
retain
in interface BulkStringRedisContent
retain
in interface LastBulkStringRedisContent
retain
in interface ReferenceCounted
retain
in class DefaultBulkStringRedisContent
public LastBulkStringRedisContent retain(int increment)
ReferenceCounted
increment
.retain
in interface ByteBufHolder
retain
in interface BulkStringRedisContent
retain
in interface LastBulkStringRedisContent
retain
in interface ReferenceCounted
retain
in class DefaultBulkStringRedisContent
public LastBulkStringRedisContent touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
in interface ByteBufHolder
touch
in interface BulkStringRedisContent
touch
in interface LastBulkStringRedisContent
touch
in interface ReferenceCounted
touch
in class DefaultBulkStringRedisContent
public LastBulkStringRedisContent touch(Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
in interface ByteBufHolder
touch
in interface BulkStringRedisContent
touch
in interface LastBulkStringRedisContent
touch
in interface ReferenceCounted
touch
in class DefaultBulkStringRedisContent
Copyright © 2008–2017 The Netty Project. All rights reserved.