Skip navigation links


org.identityconnectors.framework.common.serializer
Interface BinaryObjectSerializer


public interface BinaryObjectSerializer

Interface for writing objects to a stream.


Method Summary
 void close()
          Closes the underylying stream after first flushing it.
 void flush()
          Flushes the underlying stream.
 void writeObject(java.lang.Object object)
          Writes the next object to the stream.

 

Method Detail

writeObject

void writeObject(java.lang.Object object)
Writes the next object to the stream.
Parameters:
object - The object to write.
See Also:
for a list of supported types.

flush

void flush()
Flushes the underlying stream.

close

void close()
Closes the underylying stream after first flushing it.

Skip navigation links


Copyright © 2011, Oracle and/or its affiliates. All rights reserved.