org.objectweb.carol.irmi
Class CountInputStream

java.lang.Object
  extended byjava.io.InputStream
      extended byorg.objectweb.carol.irmi.CountInputStream

public class CountInputStream
extends InputStream

CountInputStream is a simple instrumented InputStream implementation that delegates all method calls to a provided InputStream while timing all method calls and counting how many bytes are read by this InputStream.

Author:
Rafael H. Schloming <rhs@mit.edu>

Constructor Summary
CountInputStream(InputStream in)
          Constructs a new CountInputStream that delegates to the given InputStream.
 
Method Summary
 int available()
           
 void close()
           
 void mark(int readlimit)
           
 boolean markSupported()
           
 int read()
           
 int read(byte[] b)
           
 int read(byte[] b, int off, int len)
           
 void reset()
           
 long skip(long n)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CountInputStream

public CountInputStream(InputStream in)
Constructs a new CountInputStream that delegates to the given InputStream.

Parameters:
in - the delegate InputStream.
Method Detail

available

public int available()
              throws IOException
Throws:
IOException

close

public void close()
           throws IOException
Throws:
IOException

mark

public void mark(int readlimit)

markSupported

public boolean markSupported()

read

public int read()
         throws IOException
Throws:
IOException

read

public int read(byte[] b)
         throws IOException
Throws:
IOException

read

public int read(byte[] b,
                int off,
                int len)
         throws IOException
Throws:
IOException

reset

public void reset()
           throws IOException
Throws:
IOException

skip

public long skip(long n)
          throws IOException
Throws:
IOException