- java.lang.Object
-
- java.io.OutputStream
-
- org.eclipse.jgit.util.io.CountingOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class CountingOutputStream extends OutputStream
Counts the number of bytes written.
-
-
Constructor Summary
Constructors Constructor Description CountingOutputStream(OutputStream out)Initialize a new counting stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()longgetCount()Get current number of bytes written.voidwrite(byte[] buf, int off, int len)voidwrite(int val)-
Methods inherited from class java.io.OutputStream
nullOutputStream, write
-
-
-
-
Constructor Detail
-
CountingOutputStream
public CountingOutputStream(OutputStream out)
Initialize a new counting stream.- Parameters:
out- stream to output all writes to.
-
-
Method Detail
-
getCount
public long getCount()
Get current number of bytes written.- Returns:
- current number of bytes written.
-
write
public void write(int val) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] buf, int off, int len) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
-