Record Class ServerboundChunkBatchReceivedPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ServerboundChunkBatchReceivedPacket
- All Implemented Interfaces:
Packet<ServerGamePacketListener>
public record ServerboundChunkBatchReceivedPacket(float desiredChunksPerTick)
extends Record
implements Packet<ServerGamePacketListener>
-
Field Summary
Modifier and TypeFieldDescriptionprivate final float
The field for thedesiredChunksPerTick
record component. -
Constructor Summary
ConstructorDescriptionServerboundChunkBatchReceivedPacket
(float desiredChunksPerTick) Creates an instance of aServerboundChunkBatchReceivedPacket
record class. -
Method Summary
Modifier and TypeMethodDescriptionfloat
Returns the value of thedesiredChunksPerTick
record component.final boolean
Indicates whether some other object is "equal to" this one.void
handle
(ServerGamePacketListener p_294926_) final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_294492_) Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.protocol.Packet
isSkippable, nextProtocol
-
Field Details
-
desiredChunksPerTick
private final float desiredChunksPerTickThe field for thedesiredChunksPerTick
record component.
-
-
Constructor Details
-
ServerboundChunkBatchReceivedPacket
-
ServerboundChunkBatchReceivedPacket
public ServerboundChunkBatchReceivedPacket(float desiredChunksPerTick) Creates an instance of aServerboundChunkBatchReceivedPacket
record class.- Parameters:
desiredChunksPerTick
- the value for thedesiredChunksPerTick
record component
-
-
Method Details
-
write
- Specified by:
write
in interfacePacket<ServerGamePacketListener>
-
handle
- Specified by:
handle
in interfacePacket<ServerGamePacketListener>
-
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 with '=='. -
desiredChunksPerTick
public float desiredChunksPerTick()Returns the value of thedesiredChunksPerTick
record component.- Returns:
- the value of the
desiredChunksPerTick
record component
-