Uses of Interface
com.tangosol.io.nio.ByteBufferManager
-
Packages that use ByteBufferManager Package Description com.tangosol.io.nio Contains classes related to J2SE 1.4 NIO functionality. -
-
Uses of ByteBufferManager in com.tangosol.io.nio
Classes in com.tangosol.io.nio that implement ByteBufferManager Modifier and Type Class Description class
AbstractBufferManager
Provides a basic implementation of ByteBufferManager.class
MappedBufferManager
Manages a ByteBuffer on a file.Methods in com.tangosol.io.nio that return ByteBufferManager Modifier and Type Method Description 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.Methods in com.tangosol.io.nio with parameters of type ByteBufferManager Modifier and Type Method Description protected void
BinaryMap. setBufferManager(ByteBufferManager bufmgr)
Specify the ByteBufferManager for this map.Constructors in com.tangosol.io.nio with parameters of type ByteBufferManager Constructor 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.
-