Uses of Class
gumbo.net.msg.MessageIOException

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

Uses of MessageIOException in gumbo.net.msg
 

Methods in gumbo.net.msg that throw MessageIOException
 void ObjectMessageWriter.writeMessageEnd()
          Writes the message end delimiter.
 void ObjectMessageWriter.writeMessage(Message msg)
          Resets the output stream before writing the message, and flushes the output stream after writing the message.
 void ObjectMessageReader.readMessageEnd()
          Reads the message end delimiter, skipping any white space.
 Message ObjectMessageReader.readMessage()
           
 void ObjectMessageReader.syncMessageEnd()
           
 void MsgPingStatus.readAsciiBody()
           
 void MsgPingStatus.writeAsciiBody()
           
 void MsgPingCommand.readAsciiBody()
           
 void MsgPingCommand.writeAsciiBody()
           
 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.
 void MessageReader.syncMessageEnd()
          Reads the current message to its end.
 

Uses of MessageIOException in gumbo.net.msg.ascii
 

Methods in gumbo.net.msg.ascii that throw MessageIOException
 void AsciiMessageWriter.writeToken(java.lang.String word)
          Writes a word token into the current message unit.
 void AsciiMessageWriter.writeToken(double number)
          Writes a number token into the current message unit.
 void AsciiMessageWriter.writeToken(long number)
          Writes a number token into the current message unit.
 void AsciiMessageWriter.writeRawToken(java.lang.String string)
          Writes a raw string to the current message unit.
 void AsciiMessageWriter.writeUnit(java.lang.String data)
          Writes a message unit into the current message, with data provided as a string.
 void AsciiMessageWriter.writeUnitEnd()
          Writes the message unit end delimiter.
 void AsciiMessageWriter.writeMessageEnd()
          Writes the message end delimiter.
 void AsciiMessageWriter.writeMessage(Message msg)
           
 int AsciiMessageReader.readToken()
          Reads the next token in the current message unit.
 java.lang.String AsciiMessageReader.getTokenWord()
          Gets the word in the token last read by readToken().
 double AsciiMessageReader.getTokenNumber()
          Gets the number in the token last read by readToken().
 java.lang.String AsciiMessageReader.readUnit()
          Reads the next message unit (head, parameters, or body) and returns its data as a string.
 void AsciiMessageReader.readUnitEnd()
          Reads the message unit end delimiter, skipping any white space.
 void AsciiMessageReader.atUnitEnd(int ttype)
          Used to verify that a special character read in a unit was the unit end.
 void AsciiMessageReader.readMessageEnd()
          Reads the message end delimiter, skipping any white space.
 Message AsciiMessageReader.readMessage()
           
 void AsciiMessageReader.syncMessageEnd()
           
 void AsciiMessageIO.nextUnit()
          Updates the current message unit type with the next unit type.
 void AsciiMessageHead.readAsciiHead(AsciiMessageReader reader)
          Sets the reader and reads this head as a complete message head unit from a message reader.
 void AsciiMessageHead.writeAsciiHead(AsciiMessageWriter writer, java.lang.String bodyVersion)
          Sets the writer and writes this head as a complete message head unit to a message writer.
abstract  void AsciiMessage.readAsciiBody()
          Reads the body of this message from an ASCII message reader.
abstract  void AsciiMessage.writeAsciiBody()
          Writes the body of this message to an ASCII message writer.
static AsciiMessage AsciiMessage.readAsciiMessage(AsciiMessageReader reader)
          Convenience method for reading a message in its entirety.
 void AsciiMessage.writeAsciiMessage(AsciiMessageWriter writer)
          Convenience method for writing this message in its entirety.
 

Constructors in gumbo.net.msg.ascii that throw MessageIOException
AsciiMessageHead(AsciiMessageReader reader)
          Constructs a head and initializes its contents by reading a complete message head unit from a message reader.