Interface BinaryObjectSerializer
- All Known Implementing Classes:
 BinaryObjectEncoder
public interface BinaryObjectSerializer
Interface for writing objects to a stream.
- 
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Closes the underylying stream after first flushing it.voidflush()Flushes the underlying stream.voidwriteObject(Object object) Writes the next object to the stream. 
- 
Method Details
- 
writeObject
Writes the next object to the stream.- Parameters:
 object- The object to write.- See Also:
 
 - 
flush
void flush()Flushes the underlying stream. - 
close
void close()Closes the underylying stream after first flushing it. 
 -