Package lumis.portal.bigdata
Interface IInputStreamProvider
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ClusterMirroredLocalDataFile
,IFile
,LocalDataFile
@StableMinor(version="14.0", sinceVersion="8.1") public interface IInputStreamProvider extends Serializable
Provider that provides anInputStream
. Implementations must notclose
the input stream.- Since:
- 8.1.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
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
-
-