Package lumis.portal.bigdata
Interface IInputStreamProvider
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ClusterMirroredLocalDataFile
,IFile
,LocalDataFile
@StableMinor(version="14.2", sinceVersion="8.1") public interface IInputStreamProvider extends Serializable
Provider that provides anInputStream
. Implementations must notclose
the input stream.- Since:
- 8.1.0
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InputStream
getInputStream()
Returns an input stream to be used.
-
-
-
Method Detail
-
getInputStream
InputStream getInputStream() throws 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:
IOException
- if an I/O error occurred.- Since:
- 8.1.0
-
-