Package net.minecraft.network.message
Record Class LastSeenMessageList.Acknowledgment
java.lang.Object
java.lang.Record
net.minecraft.network.message.LastSeenMessageList.Acknowledgment
- Record Components:
offset-acknowledged-checksum-
- Enclosing class:
LastSeenMessageList
public static record LastSeenMessageList.Acknowledgment(int offset, BitSet acknowledged, byte checksum)
extends Record
A record of messages acknowledged by a client.
This holds the messages the client has recently seen, as well as the last message they received, if any.
- Mappings:
Namespace Name named net/minecraft/network/message/LastSeenMessageList$Acknowledgmentintermediary net/minecraft/class_7635$class_7636official xn$bnamed offsetintermediary comp_1071official bnamed acknowledgedintermediary comp_1072official cnamed checksumintermediary comp_3879official d
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final BitSetThe field for theacknowledgedrecord component.private final byteThe field for thechecksumrecord component.static final byteprivate final intThe field for theoffsetrecord component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theacknowledgedrecord component.bytechecksum()Returns the value of thechecksumrecord component.booleanchecksumEquals(LastSeenMessageList lastSeenMessages) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intoffset()Returns the value of theoffsetrecord component.final StringtoString()Returns a string representation of this record class.voidwrite(PacketByteBuf buf)
-
Field Details
-
offset
private final int offsetThe field for theoffsetrecord component. -
acknowledged
The field for theacknowledgedrecord component. -
checksum
private final byte checksumThe field for thechecksumrecord component. -
NO_CHECKSUM
public static final byte NO_CHECKSUM- See Also:
- Mappings:
Namespace Name Mixin selector named NO_CHECKSUMLnet/minecraft/network/message/LastSeenMessageList$Acknowledgment;NO_CHECKSUM:Bintermediary field_58179Lnet/minecraft/class_7635$class_7636;field_58179:Bofficial aLxn$b;a:B
-
-
Constructor Details
-
Acknowledgment
- Mappings:
Namespace Name Mixin selector named <init>Lnet/minecraft/network/message/LastSeenMessageList$Acknowledgment;<init>(Lnet/minecraft/network/PacketByteBuf;)Vintermediary <init>Lnet/minecraft/class_7635$class_7636;<init>(Lnet/minecraft/class_2540;)Vofficial <init>Lxn$b;<init>(Lvy;)V
-
Acknowledgment
-
-
Method Details
-
write
- Mappings:
Namespace Name Mixin selector named writeLnet/minecraft/network/message/LastSeenMessageList$Acknowledgment;write(Lnet/minecraft/network/PacketByteBuf;)Vintermediary method_44983Lnet/minecraft/class_7635$class_7636;method_44983(Lnet/minecraft/class_2540;)Vofficial aLxn$b;a(Lvy;)V
-
checksumEquals
- Mappings:
Namespace Name Mixin selector named checksumEqualsLnet/minecraft/network/message/LastSeenMessageList$Acknowledgment;checksumEquals(Lnet/minecraft/network/message/LastSeenMessageList;)Zintermediary method_68856Lnet/minecraft/class_7635$class_7636;method_68856(Lnet/minecraft/class_7635;)Zofficial aLxn$b;a(Lxn;)Z
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
offset
public int offset()Returns the value of theoffsetrecord component.- Returns:
- the value of the
offsetrecord component
-
acknowledged
Returns the value of theacknowledgedrecord component.- Returns:
- the value of the
acknowledgedrecord component
-
checksum
public byte checksum()Returns the value of thechecksumrecord component.- Returns:
- the value of the
checksumrecord component
-