public class BinaryWebSocketFrame extends WebSocketFrame
Constructor and Description |
---|
BinaryWebSocketFrame()
Creates a new empty binary frame.
|
BinaryWebSocketFrame(boolean finalFragment,
int rsv,
ByteBuf binaryData)
Creates a new binary frame with the specified binary data and the final fragment flag.
|
BinaryWebSocketFrame(ByteBuf binaryData)
Creates a new binary frame with the specified binary data.
|
Modifier and Type | Method and Description |
---|---|
BinaryWebSocketFrame |
copy()
Creates a deep copy of this
ByteBufHolder . |
BinaryWebSocketFrame |
duplicate()
Duplicates this
ByteBufHolder . |
BinaryWebSocketFrame |
replace(ByteBuf content)
Returns a new
ByteBufHolder which contains the specified content . |
BinaryWebSocketFrame |
retain()
Increases the reference count by
1 . |
BinaryWebSocketFrame |
retain(int increment)
Increases the reference count by the specified
increment . |
BinaryWebSocketFrame |
retainedDuplicate()
Duplicates this
ByteBufHolder . |
BinaryWebSocketFrame |
touch()
Records the current access location of this object for debugging purposes.
|
BinaryWebSocketFrame |
touch(Object hint)
Records the current access location of this object with an additional arbitrary information for debugging
purposes.
|
isFinalFragment, rsv, toString
content, contentToString, equals, hashCode, refCnt, release, release
public BinaryWebSocketFrame()
public BinaryWebSocketFrame(ByteBuf binaryData)
binaryData
- the content of the frame.public BinaryWebSocketFrame(boolean finalFragment, int rsv, ByteBuf binaryData)
finalFragment
- flag indicating if this frame is the final fragmentrsv
- reserved bits used for protocol extensionsbinaryData
- the content of the frame.public BinaryWebSocketFrame copy()
DefaultByteBufHolder
ByteBufHolder
.
This method calls replace(content().copy())
by default.
copy
in interface ByteBufHolder
copy
in class WebSocketFrame
public BinaryWebSocketFrame 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 class WebSocketFrame
public BinaryWebSocketFrame 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 class WebSocketFrame
ByteBuf.retainedDuplicate()
public BinaryWebSocketFrame 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 class WebSocketFrame
public BinaryWebSocketFrame retain()
ReferenceCounted
1
.retain
in interface ByteBufHolder
retain
in interface ReferenceCounted
retain
in class WebSocketFrame
public BinaryWebSocketFrame retain(int increment)
ReferenceCounted
increment
.retain
in interface ByteBufHolder
retain
in interface ReferenceCounted
retain
in class WebSocketFrame
public BinaryWebSocketFrame touch()
ReferenceCounted
ResourceLeakDetector
. This method is a shortcut to touch(null)
.touch
in interface ByteBufHolder
touch
in interface ReferenceCounted
touch
in class WebSocketFrame
public BinaryWebSocketFrame touch(Object hint)
ReferenceCounted
ResourceLeakDetector
.touch
in interface ByteBufHolder
touch
in interface ReferenceCounted
touch
in class WebSocketFrame
Copyright © 2008–2017 The Netty Project. All rights reserved.