Record Class DirectionalPayloadHandler<T extends CustomPacketPayload>
java.lang.Object
java.lang.Record
net.neoforged.neoforge.network.handling.DirectionalPayloadHandler<T>
- All Implemented Interfaces:
IPayloadHandler<T>
public record DirectionalPayloadHandler<T extends CustomPacketPayload>(IPayloadHandler<T extends CustomPacketPayload> clientSide, IPayloadHandler<T extends CustomPacketPayload> serverSide)
extends Record
implements IPayloadHandler<T>
Helper class that merges two unidirectional handlers into a single bidirectional handler.
-
Field Summary
Modifier and TypeFieldDescriptionprivate final IPayloadHandler
<T> The field for theclientSide
record component.private final IPayloadHandler
<T> The field for theserverSide
record component. -
Constructor Summary
ConstructorDescriptionDirectionalPayloadHandler
(IPayloadHandler<T> clientSide, IPayloadHandler<T> serverSide) Creates an instance of aDirectionalPayloadHandler
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theclientSide
record component.final boolean
Indicates whether some other object is "equal to" this one.void
handle
(T payload, IPayloadContext context) Handles the payload with the supplied context.final int
hashCode()
Returns a hash code value for this object.Returns the value of theserverSide
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
clientSide
The field for theclientSide
record component. -
serverSide
The field for theserverSide
record component.
-
-
Constructor Details
-
DirectionalPayloadHandler
Creates an instance of aDirectionalPayloadHandler
record class.- Parameters:
clientSide
- the value for theclientSide
record componentserverSide
- the value for theserverSide
record component
-
-
Method Details
-
handle
Description copied from interface:IPayloadHandler
Handles the payload with the supplied context.The thread the supplied handler executes in depends on the
HandlerThread
set inPayloadRegistrar.executesOn(net.neoforged.neoforge.network.registration.HandlerThread)
.- Specified by:
handle
in interfaceIPayloadHandler<T extends CustomPacketPayload>
-
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)
. -
clientSide
Returns the value of theclientSide
record component.- Returns:
- the value of the
clientSide
record component
-
serverSide
Returns the value of theserverSide
record component.- Returns:
- the value of the
serverSide
record component
-