Package com.luciad.io

Interface ILcdOutputStreamFactory

All Known Implementing Classes:
TLcdFileOutputStreamFactory, TLcdStatusOutputStreamFactory

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 Type
    Method
    Description
    createOutputStream(String aDestination)
    Creates an output stream to a given destination.
  • Method Details

    • createOutputStream

      OutputStream createOutputStream(String aDestination) throws IOException
      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.