Package net.minecraftforge.network
Record Class PacketDistributor.PacketTarget
java.lang.Object
java.lang.Record
net.minecraftforge.network.PacketDistributor.PacketTarget
- Enclosing class:
- PacketDistributor<T>
public static record PacketDistributor.PacketTarget(Consumer<Packet<?>> packetConsumer, NetworkDirection direction)
extends Record
A Distributor curried with a specific value instance, for actual dispatch
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprivate final NetworkDirection
The field for thedirection
record component.The field for thepacketConsumer
record component. -
Constructor Summary
ConstructorDescriptionPacketTarget
(Consumer<Packet<?>> packetConsumer, NetworkDirection direction) Creates an instance of aPacketTarget
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thedirection
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thepacketConsumer
record component.void
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
packetConsumer
The field for thepacketConsumer
record component. -
direction
The field for thedirection
record component.
-
-
Constructor Details
-
PacketTarget
Creates an instance of aPacketTarget
record class.- Parameters:
packetConsumer
- the value for thepacketConsumer
record componentdirection
- the value for thedirection
record component
-
-
Method Details
-
send
-
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)
. -
packetConsumer
Returns the value of thepacketConsumer
record component.- Returns:
- the value of the
packetConsumer
record component
-
direction
Returns the value of thedirection
record component.- Returns:
- the value of the
direction
record component
-