- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for CountingInputStream (0.36 sec)
-
guava/src/com/google/common/io/CountingInputStream.java
@J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault public final class CountingInputStream extends FilterInputStream { private long count; private long mark = -1; /** * Wraps another input stream, counting the number of bytes read. * * @param in the input stream to be wrapped */ public CountingInputStream(InputStream in) { super(checkNotNull(in)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 17 14:35:11 UTC 2023 - 2.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CountingInputStreamTest.java
import java.io.IOException; import java.io.InputStream; /** * Unit tests for {@link CountingInputStream}. * * @author Chris Nokleberg */ public class CountingInputStreamTest extends IoTestCase { private CountingInputStream counter; @Override protected void setUp() throws Exception { super.setUp(); counter = new CountingInputStream(new ByteArrayInputStream(new byte[20])); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 3.5K bytes - Viewed (0)