Interface Packet
- All Known Subinterfaces:
RequestPacket<R>
public interface Packet
A packet transmitted over the connection of a client and a server.
Note to plugin implementations: This must have a no-args constructor.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
read
(ChannelBuf buf) Read the data from the channel buffer into this packet.void
write
(ChannelBuf buf) Write the data from this packet to the channel buffer.
-
Method Details
-
read
Read the data from the channel buffer into this packet.- Parameters:
buf
- The buffer to read from
-
write
Write the data from this packet to the channel buffer.- Parameters:
buf
- The buffer to write to
-