- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for LimitedInputStream (0.09 sec)
-
guava/src/com/google/common/io/ByteStreams.java
*/ public static InputStream limit(InputStream in, long limit) { return new LimitedInputStream(in, limit); } private static final class LimitedInputStream extends FilterInputStream { private long left; private long mark = -1; LimitedInputStream(InputStream in, long limit) { super(in); checkNotNull(in);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 29.7K bytes - Viewed (0)