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 vhintermediary net/minecraft/class_2817named net/minecraft/network/packet/c2s/common/CustomPayloadC2SPacketofficial aintermediary comp_1647named payload
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final Map<Identifier,PacketByteBuf.PacketReader<? extends CustomPayload>> private static final intprivate final CustomPayloadThe field for thepayloadrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ServerCommonPacketListener serverCommonPacketListener) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.payload()Returns the value of thepayloadrecord component.private static CustomPayloadreadPayload(Identifier id, PacketByteBuf buf) private static UnknownCustomPayloadreadUnknownPayload(Identifier id, PacketByteBuf buf) final StringtoString()Returns a string representation of this record class.voidwrite(PacketByteBuf buf) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.network.packet.Packet
getNewNetworkState, isWritingErrorSkippable
-
Field Details
-
payload
The field for thepayloadrecord component. -
MAX_PAYLOAD_SIZE
private static final int MAX_PAYLOAD_SIZE- See Also:
- Mappings:
Namespace Name Mixin selector official bLvh;b:Iintermediary field_33361Lnet/minecraft/class_2817;field_33361:Inamed MAX_PAYLOAD_SIZELnet/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 cLvh;c:Ljava/util/Map;intermediary field_45694Lnet/minecraft/class_2817;field_45694:Ljava/util/Map;named ID_TO_READERLnet/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket;ID_TO_READER:Ljava/util/Map;
-
-
Constructor Details
-
CustomPayloadC2SPacket
- Mappings:
Namespace Name Mixin selector official <init>Lvh;<init>(Lsh;)Vintermediary <init>Lnet/minecraft/class_2817;<init>(Lnet/minecraft/class_2540;)Vnamed <init>Lnet/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
CustomPayloadC2SPacket
-
-
Method Details
-
readPayload
- Mappings:
Namespace Name Mixin selector official aLvh;a(Laep;Lsh;)Lvo;intermediary method_53026Lnet/minecraft/class_2817;method_53026(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_8710;named readPayloadLnet/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 bLvh;b(Laep;Lsh;)Lvp;intermediary method_53027Lnet/minecraft/class_2817;method_53027(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_8711;named readUnknownPayloadLnet/minecraft/network/packet/c2s/common/CustomPayloadC2SPacket;readUnknownPayload(Lnet/minecraft/util/Identifier;Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/UnknownCustomPayload;
-
write
- Specified by:
writein interfacePacket<ServerCommonPacketListener>- Mappings:
Namespace Name Mixin selector official aLuw;a(Lsh;)Vintermediary method_11052Lnet/minecraft/class_2596;method_11052(Lnet/minecraft/class_2540;)Vnamed writeLnet/minecraft/network/packet/Packet;write(Lnet/minecraft/network/PacketByteBuf;)V
-
apply
- Specified by:
applyin interfacePacket<ServerCommonPacketListener>- Mappings:
Namespace Name Mixin selector official aLvh;a(Lvg;)Vintermediary method_12199Lnet/minecraft/class_2817;method_12199(Lnet/minecraft/class_8706;)Vnamed applyLnet/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 thepayloadrecord component.- Returns:
- the value of the
payloadrecord component
-