Record Class CommandExecutionC2SPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.c2s.play.CommandExecutionC2SPacket
- Record Components:
command-time-argumentSignatures-
- All Implemented Interfaces:
Packet<ServerPlayPacketListener>
public record CommandExecutionC2SPacket(String command, Instant time, ArgumentSignatures argumentSignatures)
extends Record
implements Packet<ServerPlayPacketListener>
A packet used to execute commands on the server.
This truncates the command to at most 256 characters before sending to the server on the client. If the server receives the command longer than 256 characters, it will reject the message and disconnect the client.
If the command contains an invalid character (see isValidChar), the server will
reject the command and disconnect the client.
Commands that took more than ChatMessageC2SPacket.TIME_TO_LIVE to reach
the server are considered expired and will be discarded.
- See Also:
- Mappings:
Namespace Name official wyintermediary net/minecraft/class_7472named net/minecraft/network/packet/c2s/play/CommandExecutionC2SPacketofficial aintermediary comp_808named commandofficial bintermediary comp_809named timeofficial cintermediary comp_810named argumentSignatures
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final ArgumentSignaturesThe field for theargumentSignaturesrecord component.private final StringThe field for thecommandrecord component.private static final intprivate final InstantThe field for thetimerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionCommandExecutionC2SPacket(String command, Instant time, ArgumentSignatures argumentSignatures) Creates an instance of aCommandExecutionC2SPacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ServerPlayPacketListener serverPlayPacketListener) Returns the value of theargumentSignaturesrecord component.command()Returns the value of thecommandrecord component.createArgumentsSigner(UUID sender) final booleanIndicates whether some other object is "equal to" this one.private InstantReturns when the command execution is considered expired and should be discarded.final inthashCode()Returns a hash code value for this object.booleanReturns whether the command execution is considered expired and should be discarded.time()Returns the value of thetimerecord component.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
isWritingErrorSkippable
-
Field Details
-
command
The field for thecommandrecord component. -
time
The field for thetimerecord component. -
argumentSignatures
The field for theargumentSignaturesrecord component. -
MAX_COMMAND_LENGTH
private static final int MAX_COMMAND_LENGTH- See Also:
- Mappings:
Namespace Name Mixin selector official dLwy;d:Iintermediary field_39244Lnet/minecraft/class_7472;field_39244:Inamed MAX_COMMAND_LENGTHLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;MAX_COMMAND_LENGTH:I
-
-
Constructor Details
-
CommandExecutionC2SPacket
public CommandExecutionC2SPacket(String command, Instant time, ArgumentSignatures argumentSignatures) Creates an instance of aCommandExecutionC2SPacketrecord class.- Parameters:
command- the value for thecommandrecord componenttime- the value for thetimerecord componentargumentSignatures- the value for theargumentSignaturesrecord component
-
CommandExecutionC2SPacket
- Mappings:
Namespace Name Mixin selector official <init>Lwy;<init>(Lqw;)Vintermediary <init>Lnet/minecraft/class_7472;<init>(Lnet/minecraft/class_2540;)Vnamed <init>Lnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
-
Method Details
-
write
- Specified by:
writein interfacePacket<ServerPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLsn;a(Lqw;)Vintermediary method_11052Lnet/minecraft/class_2596;method_11052(Lnet/minecraft/class_2540;)Vnamed writeLnet/minecraft/network/Packet;write(Lnet/minecraft/network/PacketByteBuf;)V
-
apply
- Specified by:
applyin interfacePacket<ServerPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLwy;a(Lwt;)Vintermediary method_43897Lnet/minecraft/class_7472;method_43897(Lnet/minecraft/class_2792;)Vnamed applyLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;apply(Lnet/minecraft/network/listener/ServerPlayPacketListener;)V
-
getExpiryTime
Returns when the command execution is considered expired and should be discarded.- Returns:
- when the command execution is considered expired and should be discarded
- Mappings:
Namespace Name Mixin selector official eLwy;e()Ljava/time/Instant;intermediary method_43898Lnet/minecraft/class_7472;method_43898()Ljava/time/Instant;named getExpiryTimeLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;getExpiryTime()Ljava/time/Instant;
-
isExpired
Returns whether the command execution is considered expired and should be discarded.- Returns:
- whether the command execution is considered expired and should be discarded
- Mappings:
Namespace Name Mixin selector official aLwy;a(Ljava/time/Instant;)Zintermediary method_43895Lnet/minecraft/class_7472;method_43895(Ljava/time/Instant;)Znamed isExpiredLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;isExpired(Ljava/time/Instant;)Z
-
createArgumentsSigner
- Mappings:
Namespace Name Mixin selector official aLwy;a(Ljava/util/UUID;)Ldp;intermediary method_43896Lnet/minecraft/class_7472;method_43896(Ljava/util/UUID;)Lnet/minecraft/class_7448;named createArgumentsSignerLnet/minecraft/network/packet/c2s/play/CommandExecutionC2SPacket;createArgumentsSigner(Ljava/util/UUID;)Lnet/minecraft/network/encryption/CommandArgumentSigner;
-
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). -
command
Returns the value of thecommandrecord component.- Returns:
- the value of the
commandrecord component
-
time
Returns the value of thetimerecord component.- Returns:
- the value of the
timerecord component
-
argumentSignatures
Returns the value of theargumentSignaturesrecord component.- Returns:
- the value of the
argumentSignaturesrecord component
-