net.i2p.util
Class CachingByteArrayOutputStream
java.lang.Object
java.io.OutputStream
java.io.ByteArrayOutputStream
net.i2p.util.CachingByteArrayOutputStream
- All Implemented Interfaces:
- Closeable, Flushable
Deprecated. unused
public class CachingByteArrayOutputStream
- extends 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.
CachingByteArrayOutputStream
public CachingByteArrayOutputStream(int cacheQuantity,
int arraySize)
- Deprecated.
releaseBuffer
public void releaseBuffer()
- Deprecated.