org.kuali.rice.kns.util.cache
Class FastByteArrayInputStream

java.lang.Object
  extended by java.io.InputStream
      extended by org.kuali.rice.kns.util.cache.FastByteArrayInputStream
All Implemented Interfaces:
Closeable

public class FastByteArrayInputStream
extends InputStream

ByteArrayInputStream implementation that does not synchronize methods.


Field Summary
protected  byte[] buf
          Our byte buffer
protected  int count
          Number of bytes that we can read from the buffer
protected  int pos
          Number of bytes that have been read from the buffer
 
Constructor Summary
FastByteArrayInputStream(byte[] buf, int count)
           
 
Method Summary
 int available()
           
 int read()
           
 int read(byte[] b, int off, int len)
           
 long skip(long n)
           
 
Methods inherited from class java.io.InputStream
close, mark, markSupported, read, reset
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

buf

protected byte[] buf
Our byte buffer


count

protected int count
Number of bytes that we can read from the buffer


pos

protected int pos
Number of bytes that have been read from the buffer

Constructor Detail

FastByteArrayInputStream

public FastByteArrayInputStream(byte[] buf,
                                int count)
Method Detail

available

public final int available()
Overrides:
available in class InputStream

read

public final int read()
Specified by:
read in class InputStream

read

public final int read(byte[] b,
                      int off,
                      int len)
Overrides:
read in class InputStream

skip

public final long skip(long n)
Overrides:
skip in class InputStream


Copyright © 2004-2012 The Kuali Foundation. All Rights Reserved.