Package com.tangosol.io.journal
Class RamJournalRM.BufferPool
java.lang.Object
com.tangosol.io.journal.RamJournalRM.BufferPool
- Enclosing class:
RamJournalRM
A pooling implementation for WriteBuffer objects.
-
Constructor Summary
ConstructorsConstructorDescriptionInstantiate a buffer pool to provide buffers to the journal appending process. -
Method Summary
Modifier and TypeMethodDescriptionallocate()
Allocate a WriteBuffer from the buffer pool.int
Determine the maximum number of buffers in the pool.int
getSize()
Determine the current number of buffers in the pool.void
release
(WriteBuffer buf) Return a buffer to the pool.toString()
-
Constructor Details
-
BufferPool
public BufferPool()Instantiate a buffer pool to provide buffers to the journal appending process.
-
-
Method Details
-
allocate
Allocate a WriteBuffer from the buffer pool.- Returns:
- a WriteBuffer instance
-
release
Return a buffer to the pool.- Parameters:
buf
- the WriteBuffer to return to the pool
-
getSize
public int getSize()Determine the current number of buffers in the pool.- Returns:
- the number of buffers in the pool
-
getCapacity
public int getCapacity()Determine the maximum number of buffers in the pool.- Returns:
- the maximum supported number of buffers in the pool
-
toString
-