org.sonatype.gossip.listener
Class CountingWriter

java.lang.Object
  extended by java.io.Writer
      extended by java.io.FilterWriter
          extended by org.sonatype.gossip.listener.CountingWriter
All Implemented Interfaces:
Closeable, Flushable, Appendable

public class CountingWriter
extends FilterWriter

Writer which counts the number of bytes written.

Since:
1.0
Author:
Jason Dillon

Field Summary
 
Fields inherited from class java.io.FilterWriter
out
 
Fields inherited from class java.io.Writer
lock
 
Constructor Summary
CountingWriter(Writer out)
           
 
Method Summary
 void reset()
           
 long size()
           
 void write(char[] cbuf, int off, int len)
           
 void write(int c)
           
 void write(String str, int off, int len)
           
 
Methods inherited from class java.io.FilterWriter
close, flush
 
Methods inherited from class java.io.Writer
append, append, append, write, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CountingWriter

public CountingWriter(Writer out)
Method Detail

size

public long size()

reset

public void reset()

write

public void write(int c)
           throws IOException
Overrides:
write in class FilterWriter
Throws:
IOException

write

public void write(char[] cbuf,
                  int off,
                  int len)
           throws IOException
Overrides:
write in class FilterWriter
Throws:
IOException

write

public void write(String str,
                  int off,
                  int len)
           throws IOException
Overrides:
write in class FilterWriter
Throws:
IOException


Copyright © 2008-2012 Sonatype. All Rights Reserved.