Record Class ClientboundCustomPayloadPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.common.ClientboundCustomPayloadPacket
- All Implemented Interfaces:
Packet<ClientCommonPacketListener>
,ICustomPacket<ClientboundCustomPayloadPacket>
public record ClientboundCustomPayloadPacket(CustomPacketPayload payload)
extends Record
implements Packet<ClientCommonPacketListener>, ICustomPacket<ClientboundCustomPayloadPacket>
-
Field Summary
Modifier and TypeFieldDescriptionprivate static final Map<ResourceLocation,
FriendlyByteBuf.Reader<? extends CustomPacketPayload>> private static final int
private final CustomPacketPayload
The field for thepayload
record component. -
Constructor Summary
ConstructorDescriptionClientboundCustomPayloadPacket
(FriendlyByteBuf p_300967_) Creates an instance of aClientboundCustomPayloadPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.int
getIndex()
@Nullable FriendlyByteBuf
Returns a unsafe reference to this packet's internal data.getName()
void
handle
(ClientCommonPacketListener p_299773_) final int
hashCode()
Returns a hash code value for this object.payload()
Returns the value of thepayload
record component.private static CustomPacketPayload
readPayload
(ResourceLocation p_298700_, FriendlyByteBuf p_298589_) private static DiscardedPayload
readUnknownPayload
(ResourceLocation p_299265_, FriendlyByteBuf p_297545_) final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_298655_) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraftforge.network.ICustomPacket
getDirection, getThis
Methods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, nextProtocol
-
Field Details
-
payload
The field for thepayload
record component. -
MAX_PAYLOAD_SIZE
private static final int MAX_PAYLOAD_SIZE- See Also:
-
KNOWN_TYPES
private static final Map<ResourceLocation,FriendlyByteBuf.Reader<? extends CustomPacketPayload>> KNOWN_TYPES
-
-
Constructor Details
-
ClientboundCustomPayloadPacket
-
ClientboundCustomPayloadPacket
Creates an instance of aClientboundCustomPayloadPacket
record class.- Parameters:
payload
- the value for thepayload
record component
-
-
Method Details
-
readPayload
private static CustomPacketPayload readPayload(ResourceLocation p_298700_, FriendlyByteBuf p_298589_) -
readUnknownPayload
private static DiscardedPayload readUnknownPayload(ResourceLocation p_299265_, FriendlyByteBuf p_297545_) -
write
- Specified by:
write
in interfacePacket<ClientCommonPacketListener>
-
handle
- Specified by:
handle
in interfacePacket<ClientCommonPacketListener>
-
getInternalData
Description copied from interface:ICustomPacket
Returns a unsafe reference to this packet's internal data. Any modifications to this buffer will be reflected in the main buffer.- Specified by:
getInternalData
in interfaceICustomPacket<ClientboundCustomPayloadPacket>
-
getName
- Specified by:
getName
in interfaceICustomPacket<ClientboundCustomPayloadPacket>
-
getIndex
public int getIndex()- Specified by:
getIndex
in interfaceICustomPacket<ClientboundCustomPayloadPacket>
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
payload
Returns the value of thepayload
record component.- Returns:
- the value of the
payload
record component
-