com.smaxe.me.io
Interface ObjectOutput

All Superinterfaces:
java.io.DataOutput

public interface ObjectOutput
extends java.io.DataOutput

ObjectOutput - DataOutput extension interface to include writing of objects.

Author:
Andrei Sochirca

Method Summary
 void writeObject(java.lang.Object o)
          Writes an object to the underlying storage or stream.
 
Methods inherited from interface java.io.DataOutput
write, write, write, writeBoolean, writeByte, writeBytes, writeChar, writeChars, writeDouble, writeFloat, writeInt, writeLong, writeShort, writeUTF
 

Method Detail

writeObject

void writeObject(java.lang.Object o)
                 throws java.io.IOException
Writes an object to the underlying storage or stream. The class that implements this interface defines how the object is written.

Parameters:
o - the object to be written
Throws:
java.io.IOException - if an I/O exception occurred