Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: io ::

interface XObjectOutputStream

Base Interface
com::sun::star::io::XDataOutputStream

Description
makes it possible to store the data and structure of runtime objects.

In every case all participating objects have to be stored or loaded at the same time. To be able to load objects, for each object class in the stream, a factory is needed. These factories are XMultiServiceFactory , which are registered at the global service manager.

Example

Given: Object A refers to B, B to C and C to A and D. The order of storing and loading these objects is irrelevant, but it must be the same for each action:



Known Services which Export this Interface

com::sun::star::io::ObjectOutputStream is a stream which allows writing the data of persistent objects.
com::sun::star::io::ObjectOutputStream is a stream which allows writing the data of persistent objects.

Methods' Summary

writeObject writes an object to the stream.

Methods' Details

writeObject
 
void
writeObject(
[ in ] com::sun::star::io::XPersistObject Object )
raises ( com::sun::star::io::IOException );

Description
writes an object to the stream.

Top of Page