Record Class PacketReading.Result.Success<T>
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.PacketReading.Result.Success<T>
- All Implemented Interfaces:
PacketReading.Result<T>
- Enclosing interface:
PacketReading.Result<T>
public static record PacketReading.Result.Success<T>(List<PacketReading.ParsedPacket<T>> packets)
extends Record
implements PacketReading.Result<T>
At least one packet was read.
The buffer may still contain half-read packets and should therefore be compacted for next read.
-
Nested Class Summary
Nested classes/interfaces inherited from interface PacketReading.Result
PacketReading.Result.Empty<T>, PacketReading.Result.Failure<T>, PacketReading.Result.Success<T> -
Constructor Summary
ConstructorsConstructorDescriptionSuccess(List<PacketReading.ParsedPacket<T>> packets) Creates an instance of aSuccessrecord class.Success(PacketReading.ParsedPacket<T> packet) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.packets()Returns the value of thepacketsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Success
Creates an instance of aSuccessrecord class.- Parameters:
packets- the value for thepacketsrecord component
-
Success
-
-
Method Details
-
toString
-
hashCode
-
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). -
packets
Returns the value of thepacketsrecord component.- Returns:
- the value of the
packetsrecord component
-