Package naga.packetwriter
Class RawPacketWriter
- java.lang.Object
-
- naga.packetwriter.RawPacketWriter
-
- All Implemented Interfaces:
PacketWriter
public class RawPacketWriter extends java.lang.Object implements PacketWriter
Writes a byte packet to the stream without doing any changes to it.This is the commonly case when one wants to output text or similarly delimited data.
- Author:
- Christoffer Lerno
-
-
Field Summary
Fields Modifier and Type Field Description static RawPacketWriter
INSTANCE
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.nio.ByteBuffer[]
write(java.nio.ByteBuffer[] byteBuffers)
Convert the incoming bytes to the bytes to be serialized.
-
-
-
Field Detail
-
INSTANCE
public static RawPacketWriter INSTANCE
-
-
Method Detail
-
write
public java.nio.ByteBuffer[] write(java.nio.ByteBuffer[] byteBuffers)
Description copied from interface:PacketWriter
Convert the incoming bytes to the bytes to be serialized.- Specified by:
write
in interfacePacketWriter
- Parameters:
byteBuffers
- an array of ByteBuffers containing data the bytes to be written.- Returns:
- the resulting array of ByteBuffers.
-
-