Record Class ReadyS2CPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.s2c.config.ReadyS2CPacket
- All Implemented Interfaces:
Packet<ClientConfigurationPacketListener>
- Mappings:
Namespace Name official wq
intermediary net/minecraft/class_8733
named net/minecraft/network/packet/s2c/config/ReadyS2CPacket
-
Constructor Summary
ConstructorDescriptionCreates an instance of aReadyS2CPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionvoid
apply
(ClientConfigurationPacketListener clientConfigurationPacketListener) final boolean
Indicates whether some other object is "equal to" this one.Returns a new network state to transition to, ornull
to indicate no state change.final int
hashCode()
Returns a hash code value for this object.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
isWritingErrorSkippable
-
Constructor Details
-
ReadyS2CPacket
- Mappings:
Namespace Name Mixin selector official <init>
Lwq;<init>(Lso;)V
intermediary <init>
Lnet/minecraft/class_8733;<init>(Lnet/minecraft/class_2540;)V
named <init>
Lnet/minecraft/network/packet/s2c/config/ReadyS2CPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
ReadyS2CPacket
public ReadyS2CPacket()Creates an instance of aReadyS2CPacket
record class.
-
-
Method Details
-
write
- Specified by:
write
in interfacePacket<ClientConfigurationPacketListener>
- Mappings:
Namespace Name Mixin selector official a
Lvd;a(Lso;)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<ClientConfigurationPacketListener>
- Mappings:
Namespace Name Mixin selector official a
Lwq;a(Lwp;)V
intermediary method_53041
Lnet/minecraft/class_8733;method_53041(Lnet/minecraft/class_8732;)V
named apply
Lnet/minecraft/network/packet/s2c/config/ReadyS2CPacket;apply(Lnet/minecraft/network/listener/ClientConfigurationPacketListener;)V
-
getNewNetworkState
Returns a new network state to transition to, ornull
to indicate no state change.The state transition is done on both the sender and receiver sides, but it is only in one direction (out of C2S and S2C). Another packet must be processed in the reverse direction to ensure the state in both directions are updated.
- Specified by:
getNewNetworkState
in interfacePacket<ClientConfigurationPacketListener>
- Returns:
- a new network state to transition to, or
null
to indicate no state change - Mappings:
Namespace Name Mixin selector official c
Lvd;c()Lsn;
intermediary method_52273
Lnet/minecraft/class_2596;method_52273()Lnet/minecraft/class_2539;
named getNewNetworkState
Lnet/minecraft/network/packet/Packet;getNewNetworkState()Lnet/minecraft/network/NetworkState;
-
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.
-