Record Class CustomPayloadS2CPacket

java.lang.Object
java.lang.Record
net.minecraft.network.packet.s2c.common.CustomPayloadS2CPacket
Record Components:
payload -
All Implemented Interfaces:
Packet<ClientCommonPacketListener>

public record CustomPayloadS2CPacket(CustomPayload payload) extends Record implements Packet<ClientCommonPacketListener>
Mappings:
Namespace Name
official xj
intermediary net/minecraft/class_2658
named net/minecraft/network/packet/s2c/common/CustomPayloadS2CPacket
official a
intermediary comp_1646
named payload
  • Field Details

    • payload

      private final CustomPayload payload
      The field for the payload record component.
    • MAX_PAYLOAD_SIZE

      private static final int MAX_PAYLOAD_SIZE
      See Also:
      Mappings:
      Namespace Name Mixin selector
      official b Lxj;b:I
      intermediary field_33326 Lnet/minecraft/class_2658;field_33326:I
      named MAX_PAYLOAD_SIZE Lnet/minecraft/network/packet/s2c/common/CustomPayloadS2CPacket;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 Lxj;c:Ljava/util/Map;
      intermediary field_45693 Lnet/minecraft/class_2658;field_45693:Ljava/util/Map;
      named ID_TO_READER Lnet/minecraft/network/packet/s2c/common/CustomPayloadS2CPacket;ID_TO_READER:Ljava/util/Map;
  • Constructor Details

    • CustomPayloadS2CPacket

      public CustomPayloadS2CPacket(PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      official <init> Lxj;<init>(Lui;)V
      intermediary <init> Lnet/minecraft/class_2658;<init>(Lnet/minecraft/class_2540;)V
      named <init> Lnet/minecraft/network/packet/s2c/common/CustomPayloadS2CPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
    • CustomPayloadS2CPacket

      public CustomPayloadS2CPacket(CustomPayload customPayload)
  • Method Details

    • readPayload

      private static CustomPayload readPayload(Identifier id, PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      official a Lxj;a(Lahg;Lui;)Lya;
      intermediary method_53023 Lnet/minecraft/class_2658;method_53023(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_8710;
      named readPayload Lnet/minecraft/network/packet/s2c/common/CustomPayloadS2CPacket;readPayload(Lnet/minecraft/util/Identifier;Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/CustomPayload;
    • readUnknownPayload

      private static UnknownCustomPayload readUnknownPayload(Identifier id, PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      official b Lxj;b(Lahg;Lui;)Lyb;
      intermediary method_53025 Lnet/minecraft/class_2658;method_53025(Lnet/minecraft/class_2960;Lnet/minecraft/class_2540;)Lnet/minecraft/class_8711;
      named readUnknownPayload Lnet/minecraft/network/packet/s2c/common/CustomPayloadS2CPacket;readUnknownPayload(Lnet/minecraft/util/Identifier;Lnet/minecraft/network/PacketByteBuf;)Lnet/minecraft/network/packet/UnknownCustomPayload;
    • write

      public void write(PacketByteBuf buf)
      Specified by:
      write in interface Packet<ClientCommonPacketListener>
      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

      public void apply(ClientCommonPacketListener clientCommonPacketListener)
      Specified by:
      apply in interface Packet<ClientCommonPacketListener>
      Mappings:
      Namespace Name Mixin selector
      official a Lxj;a(Lxi;)V
      intermediary method_53024 Lnet/minecraft/class_2658;method_53024(Lnet/minecraft/class_8705;)V
      named apply Lnet/minecraft/network/packet/s2c/common/CustomPayloadS2CPacket;apply(Lnet/minecraft/network/listener/ClientCommonPacketListener;)V
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • payload

      public CustomPayload payload()
      Returns the value of the payload record component.
      Returns:
      the value of the payload record component