Record Class MessageBody.Serialized

java.lang.Object
java.lang.Record
net.minecraft.network.message.MessageBody.Serialized
Record Components:
content -
timestamp -
salt -
lastSeen -
Enclosing class:
MessageBody

public static record MessageBody.Serialized(String content, Instant timestamp, long salt, LastSeenMessageList.Indexed lastSeen) extends Record
The serialized version of MessageBody used in networking.
See Also:
Mappings:
Namespace Name
official tk$a
intermediary net/minecraft/class_7608$class_7824
named net/minecraft/network/message/MessageBody$Serialized
official a
intermediary comp_1090
named content
official b
intermediary comp_1091
named timestamp
official c
intermediary comp_1092
named salt
official d
intermediary comp_1093
named lastSeen
  • Field Details

    • content

      private final String content
      The field for the content record component.
    • timestamp

      private final Instant timestamp
      The field for the timestamp record component.
    • salt

      private final long salt
      The field for the salt record component.
    • lastSeen

      private final LastSeenMessageList.Indexed lastSeen
      The field for the lastSeen record component.
  • Constructor Details

    • Serialized

      public Serialized(PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      official <init> Ltk$a;<init>(Lsd;)V
      intermediary <init> Lnet/minecraft/class_7608$class_7824;<init>(Lnet/minecraft/class_2540;)V
      named <init> Lnet/minecraft/network/message/MessageBody$Serialized;<init>(Lnet/minecraft/network/PacketByteBuf;)V
    • Serialized

      public Serialized(String string, Instant instant, long long2, LastSeenMessageList.Indexed indexed)
  • Method Details

    • write

      public void write(PacketByteBuf buf)
      Mappings:
      Namespace Name Mixin selector
      official a Ltk$a;a(Lsd;)V
      intermediary method_46307 Lnet/minecraft/class_7608$class_7824;method_46307(Lnet/minecraft/class_2540;)V
      named write Lnet/minecraft/network/message/MessageBody$Serialized;write(Lnet/minecraft/network/PacketByteBuf;)V
    • toBody

      public Optional<MessageBody> toBody(MessageSignatureStorage storage)
      Mappings:
      Namespace Name Mixin selector
      official a Ltk$a;a(Lte;)Ljava/util/Optional;
      intermediary method_46309 Lnet/minecraft/class_7608$class_7824;method_46309(Lnet/minecraft/class_7561;)Ljava/util/Optional;
      named toBody Lnet/minecraft/network/message/MessageBody$Serialized;toBody(Lnet/minecraft/network/message/MessageSignatureStorage;)Ljava/util/Optional;
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • content

      public String content()
      Returns the value of the content record component.
      Returns:
      the value of the content record component
    • timestamp

      public Instant timestamp()
      Returns the value of the timestamp record component.
      Returns:
      the value of the timestamp record component
    • salt

      public long salt()
      Returns the value of the salt record component.
      Returns:
      the value of the salt record component
    • lastSeen

      public LastSeenMessageList.Indexed lastSeen()
      Returns the value of the lastSeen record component.
      Returns:
      the value of the lastSeen record component