net.i2p.util
Class CachingByteArrayOutputStream
java.lang.Object
java.io.OutputStream
java.io.ByteArrayOutputStream
net.i2p.util.CachingByteArrayOutputStream
- All Implemented Interfaces:
- java.io.Closeable, java.io.Flushable
public class CachingByteArrayOutputStream
- extends java.io.ByteArrayOutputStream
simple extension to the baos to try to use a ByteCache for its
internal buffer. This caching only works when the array size
provided is sufficient for the entire buffer. After doing what
needs to be done (e.g. write(foo); toByteArray();), call releaseBuffer
to put the buffer back into the cache.
Fields inherited from class java.io.ByteArrayOutputStream |
buf, count |
Methods inherited from class java.io.ByteArrayOutputStream |
close, reset, size, toByteArray, toString, toString, toString, write, write, writeTo |
Methods inherited from class java.io.OutputStream |
flush, write |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
CachingByteArrayOutputStream
public CachingByteArrayOutputStream(int cacheQuantity,
int arraySize)
releaseBuffer
public void releaseBuffer()