Package com.google.api.client.util
Class ByteCountingOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- com.google.api.client.util.ByteCountingOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
final class ByteCountingOutputStream extends java.io.OutputStream
Output stream that throws away any content and only retains the count of bytes written to the stream.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) long
count
Number of bytes written.
-
Constructor Summary
Constructors Constructor Description ByteCountingOutputStream()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
write(byte[] b, int off, int len)
void
write(int b)
-
-
-
Method Detail
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(int b) throws java.io.IOException
- Specified by:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
-