Package lumis.portal.bigdata
Interface IInputStreamProvider
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ClusterMirroredLocalDataFile
,IFile
,LocalDataFile
@StableMinor(version="15.0", sinceVersion="8.1") public interface IInputStreamProvider extends java.io.Serializable
Provider that provides anInputStream
. Implementations must notclose
the input stream.- Since:
- 8.1.0
- Version:
- $Revision: 25303 $ $Date: 2022-10-22 22:48:02 -0300 (Sat, 22 Oct 2022) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.io.InputStream
getInputStream()
Returns an input stream to be used.
-
-
-
Method Detail
-
getInputStream
java.io.InputStream getInputStream() throws java.io.IOException
Returns an input stream to be used. The caller of this method is the responsible forclosing
theinput stream
obtained.- Returns:
- an input stream to be used.
- Throws:
java.io.IOException
- if an I/O error occurred.- Since:
- 8.1.0
-
-