Record Class SplitPacketPayload
java.lang.Object
java.lang.Record
net.neoforged.neoforge.network.payload.SplitPacketPayload
- Record Components:
payload
- The slice of the original packet.
- All Implemented Interfaces:
CustomPacketPayload
@Internal
public record SplitPacketPayload(byte[] payload)
extends Record
implements CustomPacketPayload
A payload that is used to split a packet into multiple payloads.
This single payload will contain a slice of the original packet.
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.network.protocol.common.custom.CustomPacketPayload
CustomPacketPayload.FallbackProvider<B extends FriendlyByteBuf>, CustomPacketPayload.Type<T extends CustomPacketPayload>, CustomPacketPayload.TypeAndCodec<B extends FriendlyByteBuf,
T extends CustomPacketPayload> -
Field Summary
Modifier and TypeFieldDescriptionprivate final byte[]
The field for thepayload
record component.static final StreamCodec
<FriendlyByteBuf, SplitPacketPayload> static final CustomPacketPayload.Type
<SplitPacketPayload> -
Constructor Summary
ConstructorDescriptionSplitPacketPayload
(byte[] payload) Creates an instance of aSplitPacketPayload
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.byte[]
payload()
Returns the value of thepayload
record component.final String
toString()
Returns a string representation of this record class.type()
-
Field Details
-
payload
private final byte[] payloadThe field for thepayload
record component. -
TYPE
-
STREAM_CODEC
-
-
Constructor Details
-
SplitPacketPayload
public SplitPacketPayload(byte[] payload) Creates an instance of aSplitPacketPayload
record class.- Parameters:
payload
- the value for thepayload
record component
-
-
Method Details
-
type
- Specified by:
type
in interfaceCustomPacketPayload
-
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)
. -
payload
public byte[] payload()Returns the value of thepayload
record component.- Returns:
- the value of the
payload
record component
-