Package io.netty.channel.unix
Class DomainDatagramPacket
- java.lang.Object
-
- io.netty.channel.DefaultAddressedEnvelope<ByteBuf,DomainSocketAddress>
-
- io.netty.channel.unix.DomainDatagramPacket
-
- All Implemented Interfaces:
ByteBufHolder
,AddressedEnvelope<ByteBuf,DomainSocketAddress>
,ReferenceCounted
public final class DomainDatagramPacket extends DefaultAddressedEnvelope<ByteBuf,DomainSocketAddress> implements ByteBufHolder
The message container that is used forDomainDatagramChannel
to communicate with the remote peer.
-
-
Constructor Summary
Constructors Constructor Description DomainDatagramPacket(ByteBuf data, DomainSocketAddress recipient)
Create a new instance with the specified packetdata
andrecipient
address.DomainDatagramPacket(ByteBuf data, DomainSocketAddress recipient, DomainSocketAddress sender)
Create a new instance with the specified packetdata
,recipient
address, andsender
address.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DomainDatagramPacket
copy()
Creates a deep copy of thisByteBufHolder
.DomainDatagramPacket
duplicate()
Duplicates thisByteBufHolder
.DomainDatagramPacket
replace(ByteBuf content)
Returns a newByteBufHolder
which contains the specifiedcontent
.DomainDatagramPacket
retain()
Increases the reference count by1
.DomainDatagramPacket
retain(int increment)
Increases the reference count by the specifiedincrement
.DomainDatagramPacket
retainedDuplicate()
Duplicates thisByteBufHolder
.DomainDatagramPacket
touch()
Records the current access location of this object for debugging purposes.DomainDatagramPacket
touch(java.lang.Object hint)
Records the current access location of this object with an additional arbitrary information for debugging purposes.-
Methods inherited from class io.netty.channel.DefaultAddressedEnvelope
content, recipient, refCnt, release, release, sender, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface io.netty.buffer.ByteBufHolder
content
-
Methods inherited from interface io.netty.util.ReferenceCounted
refCnt, release, release
-
-
-
-
Constructor Detail
-
DomainDatagramPacket
public DomainDatagramPacket(ByteBuf data, DomainSocketAddress recipient)
Create a new instance with the specified packetdata
andrecipient
address.
-
DomainDatagramPacket
public DomainDatagramPacket(ByteBuf data, DomainSocketAddress recipient, DomainSocketAddress sender)
Create a new instance with the specified packetdata
,recipient
address, andsender
address.
-
-
Method Detail
-
copy
public DomainDatagramPacket copy()
Description copied from interface:ByteBufHolder
Creates a deep copy of thisByteBufHolder
.- Specified by:
copy
in interfaceByteBufHolder
-
duplicate
public DomainDatagramPacket duplicate()
Description copied from interface:ByteBufHolder
Duplicates thisByteBufHolder
. Be aware that this will not automatically callByteBufHolder.retain()
.- Specified by:
duplicate
in interfaceByteBufHolder
-
replace
public DomainDatagramPacket replace(ByteBuf content)
Description copied from interface:ByteBufHolder
Returns a newByteBufHolder
which contains the specifiedcontent
.- Specified by:
replace
in interfaceByteBufHolder
-
retain
public DomainDatagramPacket retain()
Description copied from interface:ReferenceCounted
Increases the reference count by1
.- Specified by:
retain
in interfaceAddressedEnvelope<ByteBuf,DomainSocketAddress>
- Specified by:
retain
in interfaceByteBufHolder
- Specified by:
retain
in interfaceReferenceCounted
- Overrides:
retain
in classDefaultAddressedEnvelope<ByteBuf,DomainSocketAddress>
-
retain
public DomainDatagramPacket retain(int increment)
Description copied from interface:ReferenceCounted
Increases the reference count by the specifiedincrement
.- Specified by:
retain
in interfaceAddressedEnvelope<ByteBuf,DomainSocketAddress>
- Specified by:
retain
in interfaceByteBufHolder
- Specified by:
retain
in interfaceReferenceCounted
- Overrides:
retain
in classDefaultAddressedEnvelope<ByteBuf,DomainSocketAddress>
-
retainedDuplicate
public DomainDatagramPacket retainedDuplicate()
Description copied from interface:ByteBufHolder
Duplicates thisByteBufHolder
. This method returns a retained duplicate unlikeByteBufHolder.duplicate()
.- Specified by:
retainedDuplicate
in interfaceByteBufHolder
- See Also:
ByteBuf.retainedDuplicate()
-
touch
public DomainDatagramPacket touch()
Description copied from interface:ReferenceCounted
Records the current access location of this object for debugging purposes. If this object is determined to be leaked, the information recorded by this operation will be provided to you viaResourceLeakDetector
. This method is a shortcut totouch(null)
.- Specified by:
touch
in interfaceAddressedEnvelope<ByteBuf,DomainSocketAddress>
- Specified by:
touch
in interfaceByteBufHolder
- Specified by:
touch
in interfaceReferenceCounted
- Overrides:
touch
in classDefaultAddressedEnvelope<ByteBuf,DomainSocketAddress>
-
touch
public DomainDatagramPacket touch(java.lang.Object hint)
Description copied from interface:ReferenceCounted
Records the current access location of this object with an additional arbitrary information for debugging purposes. If this object is determined to be leaked, the information recorded by this operation will be provided to you viaResourceLeakDetector
.- Specified by:
touch
in interfaceAddressedEnvelope<ByteBuf,DomainSocketAddress>
- Specified by:
touch
in interfaceByteBufHolder
- Specified by:
touch
in interfaceReferenceCounted
- Overrides:
touch
in classDefaultAddressedEnvelope<ByteBuf,DomainSocketAddress>
-
-