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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
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 Detail
-
read
void read(ChannelBuf buf)
Read the data from the channel buffer into this packet.- Parameters:
buf
- The buffer to read from
-
write
void write(ChannelBuf buf)
Write the data from this packet to the channel buffer.- Parameters:
buf
- The buffer to write to
-
-