Uses of Interface
com.github.luben.zstd.BufferPool
-
Packages that use BufferPool Package Description com.github.luben.zstd -
-
Uses of BufferPool in com.github.luben.zstd
Classes in com.github.luben.zstd that implement BufferPool Modifier and Type Class Description class
NoPool
Implementation of `BufferPool` that does not recycle buffers.class
RecyclingBufferPool
A pool of buffers which uses a simple reference queue to recycle buffers.Fields in com.github.luben.zstd declared as BufferPool Modifier and Type Field Description private BufferPool
ZstdInputStreamNoFinalizer. bufferPool
private BufferPool
ZstdOutputStreamNoFinalizer. bufferPool
static BufferPool
NoPool. INSTANCE
static BufferPool
RecyclingBufferPool. INSTANCE
Constructors in com.github.luben.zstd with parameters of type BufferPool Constructor Description ZstdInputStream(java.io.InputStream inStream, BufferPool bufferPool)
create a new decompressing InputStreamZstdInputStreamNoFinalizer(java.io.InputStream inStream, BufferPool bufferPool)
create a new decompressing InputStreamZstdOutputStream(java.io.OutputStream outStream, BufferPool bufferPool)
create a new compressing OutputStreamZstdOutputStream(java.io.OutputStream outStream, BufferPool bufferPool, int level)
create a new compressing OutputStreamZstdOutputStreamNoFinalizer(java.io.OutputStream outStream, BufferPool bufferPool)
create a new compressing OutputStreamZstdOutputStreamNoFinalizer(java.io.OutputStream outStream, BufferPool bufferPool, int level)
create a new compressing OutputStream
-