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 forDomainDatagramChannelto communicate with the remote peer.
-
-
Constructor Summary
Constructors Constructor Description DomainDatagramPacket(ByteBuf data, DomainSocketAddress recipient)Create a new instance with the specified packetdataandrecipientaddress.DomainDatagramPacket(ByteBuf data, DomainSocketAddress recipient, DomainSocketAddress sender)Create a new instance with the specified packetdata,recipientaddress, andsenderaddress.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DomainDatagramPacketcopy()Creates a deep copy of thisByteBufHolder.DomainDatagramPacketduplicate()Duplicates thisByteBufHolder.DomainDatagramPacketreplace(ByteBuf content)Returns a newByteBufHolderwhich contains the specifiedcontent.DomainDatagramPacketretain()Increases the reference count by1.DomainDatagramPacketretain(int increment)Increases the reference count by the specifiedincrement.DomainDatagramPacketretainedDuplicate()Duplicates thisByteBufHolder.DomainDatagramPackettouch()Records the current access location of this object for debugging purposes.DomainDatagramPackettouch(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 packetdataandrecipientaddress.
-
DomainDatagramPacket
public DomainDatagramPacket(ByteBuf data, DomainSocketAddress recipient, DomainSocketAddress sender)
Create a new instance with the specified packetdata,recipientaddress, andsenderaddress.
-
-
Method Detail
-
copy
public DomainDatagramPacket copy()
Description copied from interface:ByteBufHolderCreates a deep copy of thisByteBufHolder.- Specified by:
copyin interfaceByteBufHolder
-
duplicate
public DomainDatagramPacket duplicate()
Description copied from interface:ByteBufHolderDuplicates thisByteBufHolder. Be aware that this will not automatically callByteBufHolder.retain().- Specified by:
duplicatein interfaceByteBufHolder
-
replace
public DomainDatagramPacket replace(ByteBuf content)
Description copied from interface:ByteBufHolderReturns a newByteBufHolderwhich contains the specifiedcontent.- Specified by:
replacein interfaceByteBufHolder
-
retain
public DomainDatagramPacket retain()
Description copied from interface:ReferenceCountedIncreases the reference count by1.- Specified by:
retainin interfaceAddressedEnvelope<ByteBuf,DomainSocketAddress>- Specified by:
retainin interfaceByteBufHolder- Specified by:
retainin interfaceReferenceCounted- Overrides:
retainin classDefaultAddressedEnvelope<ByteBuf,DomainSocketAddress>
-
retain
public DomainDatagramPacket retain(int increment)
Description copied from interface:ReferenceCountedIncreases the reference count by the specifiedincrement.- Specified by:
retainin interfaceAddressedEnvelope<ByteBuf,DomainSocketAddress>- Specified by:
retainin interfaceByteBufHolder- Specified by:
retainin interfaceReferenceCounted- Overrides:
retainin classDefaultAddressedEnvelope<ByteBuf,DomainSocketAddress>
-
retainedDuplicate
public DomainDatagramPacket retainedDuplicate()
Description copied from interface:ByteBufHolderDuplicates thisByteBufHolder. This method returns a retained duplicate unlikeByteBufHolder.duplicate().- Specified by:
retainedDuplicatein interfaceByteBufHolder- See Also:
ByteBuf.retainedDuplicate()
-
touch
public DomainDatagramPacket touch()
Description copied from interface:ReferenceCountedRecords 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:
touchin interfaceAddressedEnvelope<ByteBuf,DomainSocketAddress>- Specified by:
touchin interfaceByteBufHolder- Specified by:
touchin interfaceReferenceCounted- Overrides:
touchin classDefaultAddressedEnvelope<ByteBuf,DomainSocketAddress>
-
touch
public DomainDatagramPacket touch(java.lang.Object hint)
Description copied from interface:ReferenceCountedRecords 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:
touchin interfaceAddressedEnvelope<ByteBuf,DomainSocketAddress>- Specified by:
touchin interfaceByteBufHolder- Specified by:
touchin interfaceReferenceCounted- Overrides:
touchin classDefaultAddressedEnvelope<ByteBuf,DomainSocketAddress>
-
-