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

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

interface XActiveDataSink

Base Interface
com::sun::star::uno::XInterface

Description
makes it possible to read the corresponding object from an input stream.

If you want to allow control from outside, also implement the XActiveDataControl interface.



Known Services which Export this Interface

com::sun::star::io::Pump the implementation of a data source and a data sink.
com::sun::star::io::TextInputStream reads the data through a chained stream.
com::sun::star::io::ObjectInputStream is a stream which allows reading the data of persistent objects.
com::sun::star::io::DataInputStream reads structured data from a chained XInputStream .
com::sun::star::io::MarkableInputStream allows to set marks in an inputstream and to later jump back to these marks.
com::sun::star::io::Pump the implementation of a data source and a data sink.
com::sun::star::io::TextInputStream reads the data through a chained stream.
com::sun::star::io::ObjectInputStream is a stream which allows reading the data of persistent objects.
com::sun::star::io::DataInputStream reads structured data from a chained XInputStream .
com::sun::star::io::MarkableInputStream allows to set marks in an inputstream and to later jump back to these marks.
com::sun::star::ucb::DataContainer [ DEPRECATED ]
specifies a container that can contain binary data and other data containers.
com::sun::star::packages::PackageStream This service represents a stream contained within a Package. Instances of this class can only be constructed by the implementation of the Package service.

Methods' Summary

setInputStream plugs the input stream.
getInputStream

Methods' Details

setInputStream
 
void
setInputStream(
[ in ] com::sun::star::io::XInputStream aStream );

Description
plugs the input stream.

If XConnectable is also implemented, this method should query aStream for an XConnectable and connect both.

getInputStream
 
com::sun::star::io::XInputStream
getInputStream();
Returns
the plugged stream.

Top of Page