Package | Description |
---|---|
com.tangosol.io.nio |
Contains classes related to J2SE 1.4 NIO functionality.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractBufferManager
Provides a basic implementation of ByteBufferManager.
|
class |
DirectBufferManager
Deprecated.
use
JournalBinaryStore
instead |
class |
MappedBufferManager
Manages a ByteBuffer on a file.
|
Modifier and Type | Method and Description |
---|---|
protected ByteBufferManager |
DirectStoreManager.createBufferManager()
Deprecated.
Create a ByteBufferManager to be used by a BinaryStore.
|
protected abstract ByteBufferManager |
AbstractStoreManager.createBufferManager()
Create a ByteBufferManager to be used by a BinaryStore.
|
protected ByteBufferManager |
MappedStoreManager.createBufferManager()
Create a ByteBufferManager to be used by a BinaryStore.
|
ByteBufferManager |
BinaryMap.getBufferManager()
Obtain the ByteBufferManager that provides the ByteBuffer objects.
|
Modifier and Type | Method and Description |
---|---|
protected void |
BinaryMap.setBufferManager(ByteBufferManager bufmgr)
Specify the ByteBufferManager for this map.
|
Constructor and Description |
---|
BinaryMap(ByteBufferManager bufmgr)
Construct a BinaryMap using a buffer from the specified
ByteBufferManager, and using the default modulo growth and shrinkage
(load factor) settings.
|
BinaryMap(ByteBufferManager bufmgr,
double dflMaxLoadFactor,
double dflMinLoadFactor,
boolean fStrict)
Construct a BinaryMap using a buffer from the specified
ByteBufferManager, and using the specified modulo growth and shrinkage
(load factor) settings.
|