Package org.apache.http.impl.io
Class IdentityInputStream
java.lang.Object
java.io.InputStream
org.apache.http.impl.io.IdentityInputStream
- All Implemented Interfaces:
Closeable
,AutoCloseable
Input stream that reads data without any transformation. The end of the
content entity is demarcated by closing the underlying connection
(EOF condition). Entities transferred using this input stream can be of
unlimited length.
Note that this class NEVER closes the underlying stream, even when close
gets called. Instead, it will read until the end of the stream (until
-1
is returned).
- Since:
- 4.0
-
Constructor Summary
ConstructorsConstructorDescriptionWraps session input stream and reads input until the the end of stream. -
Method Summary
Methods inherited from class java.io.InputStream
mark, markSupported, nullInputStream, read, readAllBytes, readNBytes, readNBytes, reset, skip, skipNBytes, transferTo
-
Constructor Details
-
IdentityInputStream
Wraps session input stream and reads input until the the end of stream.- Parameters:
in
- The session input buffer
-
-
Method Details
-
available
- Overrides:
available
in classInputStream
- Throws:
IOException
-
close
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
-
read
- Specified by:
read
in classInputStream
- Throws:
IOException
-
read
- Overrides:
read
in classInputStream
- Throws:
IOException
-