Record Class CustomPayloadC2SPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.c2s.common.CustomPayloadC2SPacket
- Record Components:
payload
-
- All Implemented Interfaces:
Packet<ServerCommonPacketListener>
public record CustomPayloadC2SPacket(CustomPayload payload)
extends Record
implements Packet<ServerCommonPacketListener>
- Mappings:
Namespace Name official xs
intermediary net/minecraft/class_2817
named net/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket
official a
intermediary comp_1647
named payload
-
Field Summary
Modifier and TypeFieldDescriptionprivate static final Map<Identifier,
PacketByteBuf.PacketReader<? extends CustomPayload>> private static final int
private final CustomPayload
The field for thepayload
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
apply
(ServerCommonPacketListener serverCommonPacketListener) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.payload()
Returns the value of thepayload
record component.private static CustomPayload
readPayload
(Identifier id, PacketByteBuf buf) private static UnknownCustomPayload
readUnknownPayload
(Identifier id, PacketByteBuf buf) final String
toString()
Returns a string representation of this record class.void
write
(PacketByteBuf buf) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.packet.Packet
getNewNetworkState, isWritingErrorSkippable
-
Field Details
-
payload
The field for thepayload
record component. -
MAX_PAYLOAD_SIZE
private static final int MAX_PAYLOAD_SIZE- See Also:
- Mappings:
Namespace Name Mixin selector official b
Lxs;b:I
intermediary field_33361
Lnet/minecraft/class_2817;field_33361:I
named MAX_PAYLOAD_SIZE
Lnet/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket;MAX_PAYLOAD_SIZE:I
-
ID_TO_READER
private static final Map<Identifier,PacketByteBuf.PacketReader<? extends CustomPayload>> ID_TO_READER- Mappings:
Namespace Name Mixin selector official c
Lxs;c:Ljava/util/Map;
intermediary field_45694
Lnet/minecraft/class_2817;field_45694:Ljava/util/Map;
named ID_TO_READER
Lnet/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket;ID_TO_READER:Ljava/util/Map;
-
-
Constructor Details
-
CustomPayloadC2SPacket
- Mappings:
Namespace Name Mixin selector official <init>
Lxs;<init>(Lui;)V
intermediary <init>
Lnet/minecraft/class_2817;<init>(Lnet/minecraft/class_2540;)V
named <init>
Lnet/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
CustomPayloadC2SPacket
-
-
Method Details
-
readPayload
- Mappings:
Namespace Name Mixin selector official a
Lxs;a(Lahg;Lui;)Lya;
intermediary method_53026
Lnet/minecraft/class_2817;method_53026(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_8710;
named readPayload
Lnet/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket;readPayload(Lnet/minecraft/util/Identifier;Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/CustomPayload;
-
readUnknownPayload
- Mappings:
Namespace Name Mixin selector official b
Lxs;b(Lahg;Lui;)Lyb;
intermediary method_53027
Lnet/minecraft/class_2817;method_53027(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_8711;
named readUnknownPayload
Lnet/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket;readUnknownPayload(Lnet/minecraft/util/Identifier;Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/UnknownCustomPayload;
-
write
- Specified by:
write
in interfacePacket<ServerCommonPacketListener>
- Mappings:
Namespace Name Mixin selector official a
Lxf;a(Lui;)V
intermediary method_11052
Lnet/minecraft/class_2596;method_11052(Lnet/minecraft/class_2540;)V
named write
Lnet/minecraft/network/packet/Packet;write(Lnet/minecraft/network/PacketByteBuf;)V
-
apply
- Specified by:
apply
in interfacePacket<ServerCommonPacketListener>
- Mappings:
Namespace Name Mixin selector official a
Lxs;a(Lxq;)V
intermediary method_12199
Lnet/minecraft/class_2817;method_12199(Lnet/minecraft/class_8706;)V
named apply
Lnet/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket;apply(Lnet/minecraft/network/listener/ServerCommonPacketListener;)V
-
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
-