|
Syntax
- void writeBytes
(
- sequence< byte > aData )
- raises ( com::sun::star::io::NotConnectedException , com::sun::star::io::BufferSizeExceededException , com::sun::star::io::IOException );
Description
writes the whole sequence to the stream. (blocking call)
Syntax
- void flush
();
- raises ( com::sun::star::io::NotConnectedException , com::sun::star::io::BufferSizeExceededException , com::sun::star::io::IOException );
Description
flushes out of the stream any data that may exist in buffers.
Syntax
- void closeOutput
();
- raises ( com::sun::star::io::NotConnectedException , com::sun::star::io::BufferSizeExceededException , com::sun::star::io::IOException );
Description
gets called to indicate that all data has been written.
If this method is not yet been called, no attached
XInputStream receives an EOF signal. No further
bytes may be written after this method has been called.
|