Package com.luciad.io
Interface ILcdOutputStreamFactory
- All Known Implementing Classes:
TLcdFileOutputStreamFactory
,TLcdStatusOutputStreamFactory
,TLcyCompositeOutputStreamFactory
public interface ILcdOutputStreamFactory
An
ILcdOutputStreamFactory
creates an OutputStream
for a given destination.
This can be used in implementations of ILcdModelEncoder
to implement, e.g., ways of transferring data from the decoder to the
actual destination.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptioncreateOutputStream
(String aDestination) Creates an output stream to a given destination.
-
Method Details
-
createOutputStream
Creates an output stream to a given destination.- Parameters:
aDestination
- an accessible destination.- Returns:
- an
OutputStream
to the destination. - Throws:
IOException
- when the destination is non accessible.
-