Record Class ChatMessageS2CPacket
- Record Components:
message-chatType-
- All Implemented Interfaces:
Packet<ClientPlayPacketListener>
The content is not wrapped in any way (e.g. by chat.type.text text); the
raw message content is sent to the clients, and they will wrap it. To register
custom wrapping behaviors, check MessageType.register(java.lang.String).
Chat messages have signatures. It is possible to use a bogus signature - such as
invalid @link
net.minecraft.network.message.MessageSignature#noneinvalid @link
net.minecraft.network.message.MessageSignature#updateSignature
If the message takes more than SignedMessage.CLIENTBOUND_TIME_TO_LIVE
to reach the clients (including the time it originally took to reach the server),
the message is not considered secure anymore by the clients, and may be discarded
depending on the clients' options.
- See Also:
- Mappings:
Namespace Name official uwintermediary net/minecraft/class_7438named net/minecraft/network/packet/s2c/play/ChatMessageS2CPacketofficial aintermediary comp_942named messageofficial bintermediary comp_943named chatType
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final MessageType.class_7603The field for thechatTyperecord component.private final SignedMessageThe field for themessagerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionChatMessageS2CPacket(SignedMessage signedMessage, MessageType.class_7603 class_7603) -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(ClientPlayPacketListener clientPlayPacketListener) chatType()Returns the value of thechatTyperecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanReturns whether a throwable in writing of this packet allows the connection to simply skip the packet's sending than disconnecting.message()Returns the value of themessagerecord component.method_44891(DynamicRegistryManager dynamicRegistryManager) final StringtoString()Returns a string representation of this record class.voidwrite(PacketByteBuf buf)
-
Field Details
-
Constructor Details
-
ChatMessageS2CPacket
- Mappings:
Namespace Name Mixin selector official <init>Luw;<init>(Lqx;)Vintermediary <init>Lnet/minecraft/class_7438;<init>(Lnet/minecraft/class_2540;)Vnamed <init>Lnet/minecraft/network/packet/s2c/play/ChatMessageS2CPacket;<init>(Lnet/minecraft/network/PacketByteBuf;)V
-
ChatMessageS2CPacket
-
-
Method Details
-
write
- Specified by:
writein interfacePacket<ClientPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLst;a(Lqx;)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<ClientPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLuw;a(Lsw;)Vintermediary method_43629Lnet/minecraft/class_7438;method_43629(Lnet/minecraft/class_2602;)Vnamed applyLnet/minecraft/network/packet/s2c/play/ChatMessageS2CPacket;apply(Lnet/minecraft/network/listener/ClientPlayPacketListener;)V
-
isWritingErrorSkippable
public boolean isWritingErrorSkippable()Returns whether a throwable in writing of this packet allows the connection to simply skip the packet's sending than disconnecting.- Specified by:
isWritingErrorSkippablein interfacePacket<ClientPlayPacketListener>- Mappings:
Namespace Name Mixin selector official aLst;a()Zintermediary method_11051Lnet/minecraft/class_2596;method_11051()Znamed isWritingErrorSkippableLnet/minecraft/network/Packet;isWritingErrorSkippable()Z
-
method_44891
- Mappings:
Namespace Name Mixin selector official aLuw;a(Lhn;)Lri$a;intermediary method_44891Lnet/minecraft/class_7438;method_44891(Lnet/minecraft/class_5455;)Lnet/minecraft/class_2556$class_7602;named method_44891Lnet/minecraft/network/packet/s2c/play/ChatMessageS2CPacket;method_44891(Lnet/minecraft/util/registry/DynamicRegistryManager;)Lnet/minecraft/network/message/MessageType$class_7602;
-
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). -
message
Returns the value of themessagerecord component.- Returns:
- the value of the
messagerecord component
-
chatType
Returns the value of thechatTyperecord component.- Returns:
- the value of the
chatTyperecord component
-