Uses of Class
gumbo.net.msg.MessageDataException

Packages that use MessageDataException
gumbo.net.msg Provides special purpose building blocks for building, writing and reading application-specific network messages. 
gumbo.net.msg.ascii   
 

Uses of MessageDataException in gumbo.net.msg
 

Methods in gumbo.net.msg that throw MessageDataException
 void ObjectMessageWriter.writeMessage(Message msg)
          Resets the output stream before writing the message, and flushes the output stream after writing the message.
 Message ObjectMessageReader.readMessage()
           
 void MessageWriter.writeMessage(Message msg)
          Writes a message, including its end delimiter, in a thread-safe manner.
 Message MessageReader.readMessage()
          Reads a message, including its end delimiter, in a thread-safe manner.
protected  void Message.setHead(MessageHead head)
          Sets the head for this message.
 

Constructors in gumbo.net.msg that throw MessageDataException
MsgPingStatus(AsciiMessageHead head)
           
MsgPingCommand(AsciiMessageHead head)
           
 

Uses of MessageDataException in gumbo.net.msg.ascii
 

Methods in gumbo.net.msg.ascii that throw MessageDataException
 void AsciiMessageWriter.writeMessage(Message msg)
           
 Message AsciiMessageReader.readMessage()
           
protected static AsciiMessage AsciiMessage.createAsciiMessage(AsciiMessageHead head)
          Creates a new message of a specific type as indicated by a message head.
static AsciiMessage AsciiMessage.readAsciiMessage(AsciiMessageReader reader)
          Convenience method for reading a message in its entirety.
 

Constructors in gumbo.net.msg.ascii that throw MessageDataException
AsciiMessage(AsciiMessageHead head)
          Constructs a message with the specified head and an empty body.