Uses of Interface
naga.PacketReader

Packages that use PacketReader
naga The main Naga classes. 
naga.packetreader Package containing various ready-to-use PacketReader implementations. 
 

Uses of PacketReader in naga
 

Methods in naga with parameters of type PacketReader
 void NIOSocket.setPacketReader(PacketReader packetReader)
          Sets the packet reader for this socket.
 

Uses of PacketReader in naga.packetreader
 

Classes in naga.packetreader that implement PacketReader
 class AsciiLinePacketReader
          Reads a bytestream delimited by '\n'.
 class DelimiterPacketReader
          Class to read a byte stream delimited by a byte marking the end of a packet.
 class RawPacketReader
          This packet reader reads as many bytes as possible from the stream and then bundles those bytes into a packet.
 class RegularPacketReader
          Reads packet of the format
 class ZeroDelimitedPacketReader
          Reads a bytestream delimited by 0.