Package lumis.portal.bigdata
Interface IInputStreamProvider
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ClusterMirroredLocalDataFile
,IFile
,LocalDataFile
@StableMinor(version="16.1", 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: 26156 $ $Date: 2024-01-13 10:26:46 -0300 (Sat, 13 Jan 2024) $
-
-
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
-
-