Package com.tangosol.net
Class ExtensibleConfigurableCacheFactory.PartitionedBackingMapManager
- java.lang.Object
- 
- com.tangosol.util.Base
- 
- com.tangosol.net.AbstractBackingMapManager
- 
- com.tangosol.net.ExtensibleConfigurableCacheFactory.PartitionedBackingMapManager
 
 
 
- 
- All Implemented Interfaces:
- BackingMapManager
 - Enclosing class:
- ExtensibleConfigurableCacheFactory
 
 public static class ExtensibleConfigurableCacheFactory.PartitionedBackingMapManager extends AbstractBackingMapManager The PartitionedBackingMapManager is used by PartitionAwareBackingMap(s) to lazily configure the enclosing PABM based on the configuration settings of the enclosed maps.
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class com.tangosol.util.BaseBase.LoggingWriter
 
- 
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedPartitionedBackingMapManager(ExtensibleConfigurableCacheFactory factory, MapBuilder.Dependencies dependencies, ParameterResolver resolver, MapBuilder bldrMap)Create a PartitionedBackingMapManager object.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ExtensibleConfigurableCacheFactorygetCacheFactory()Obtain the "container" ConfigurableCacheFactory that created this manager and which this manager is bound to.StorageAccessAuthorizergetStorageAccessAuthorizer(String sName)Determine theStorageAccessAuthorizerthat is used by a CacheService to secure access to the NamedCache with the specified name.MapinstantiateBackingMap(String sName)Instantiate a [thread safe] Map that should be used by a CacheService to store cached values for a NamedCache with the specified name.booleanisBackingMapPersistent(String sName)Determine if the contents of the Map that is used by a CacheService to store cached values for a NamedCache with the specified name should be persisted.booleanisBackingMapSlidingExpiry(String sName)Determine if the Map that is used by a CacheService to store cached values for a NamedCache with specified name enables the sliding expiry - the expiry delay being extended by the read operations.voidreleaseBackingMap(String sName, Map map)Release the specified Map that was created using theBackingMapManager.instantiateBackingMap(String)method.- 
Methods inherited from class com.tangosol.net.AbstractBackingMapManagergetContext, init
 - 
Methods inherited from class com.tangosol.util.Baseazzert, azzert, azzert, azzertFailed, breakLines, breakLines, capitalize, checkNotEmpty, checkNotNull, checkRange, computeSafeWaitTime, decimalValue, dup, dup, ensureBigDecimal, ensureClassLoader, ensureRuntimeException, ensureRuntimeException, equals, equalsDeep, err, err, err, err, err, escape, formatDateTime, getCallerStackFrame, getCommonMonitor, getCommonMonitor, getCommonMonitor, getContextClassLoader, getContextClassLoader, getDeepMessage, getErr, getLastSafeTimeMillis, getLog, getMaxDecDigits, getMaxHexDigits, getOriginalException, getOut, getProcessRandom, getRandom, getRandomBinary, getRandomBinary, getRandomString, getSafeTimeMillis, getStackFrame, getStackFrames, getStackTrace, getStackTrace, getStackTrace, getThreadFactory, getTimeZone, getUpTimeMillis, hashCode, hexValue, indentString, indentString, isDecimal, isHex, isLogEcho, isOctal, log, log, log, log, log, makeInteger, makeLong, makeThread, mergeArray, mergeBooleanArray, mergeByteArray, mergeCharArray, mergeDoubleArray, mergeFloatArray, mergeIntArray, mergeLongArray, mod, mod, octalValue, out, out, out, out, out, pad, parseBandwidth, parseBandwidth, parseDelimitedString, parseHex, parseHex, parseMemorySize, parseMemorySize, parsePercentage, parseTime, parseTime, parseTimeNanos, parseTimeNanos, printStackTrace, randomize, randomize, randomize, randomize, read, read, read, read, read, read, read, replace, setErr, setLog, setLogEcho, setOut, sleep, toBandwidthString, toBandwidthString, toCharEscape, toCrc, toCrc, toCrc, toCrc, toCrc, toDecString, toDelimitedString, toDelimitedString, toDelimitedString, toDelimitedString, toHex, toHex, toHexDump, toHexEscape, toHexEscape, toHexEscape, toHexEscape, toHexString, toMemorySizeString, toMemorySizeString, toQuotedCharEscape, toQuotedStringEscape, toSqlString, toString, toString, toStringEscape, toUnicodeEscape, trace, trace, trace, trace, trace, trace, trace, trace, trace, truncateString, truncateString, wait
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface com.tangosol.net.BackingMapManagergetReadLocator, isBackingMapPersistent
 
- 
 
- 
- 
- 
Constructor Detail- 
PartitionedBackingMapManagerprotected PartitionedBackingMapManager(ExtensibleConfigurableCacheFactory factory, MapBuilder.Dependencies dependencies, ParameterResolver resolver, MapBuilder bldrMap) Create a PartitionedBackingMapManager object.- Parameters:
- factory- the factory associated with this manager
- dependencies- the- MapBuilderdependencies
- resolver- the ParameterResolver needed to resolve cache params
- bldrMap- the builder that will build the backing map
 
 
- 
 - 
Method Detail- 
instantiateBackingMappublic Map instantiateBackingMap(String sName) Instantiate a [thread safe] Map that should be used by a CacheService to store cached values for a NamedCache with the specified name.If the contents of the Map can be modified by anything other than the CacheService itself (e.g. if the Map automatically expires its entries periodically or size-limits its contents), then the returned object must implement the ObservableMap interface. NOTE: The cache name passed in has a partition number appended to it so that we cannot use it to find a parameter resolver. This is why the resolver is passed into the constructor. - Parameters:
- sName- the name of the NamedCache for which this backing map is being created
- Returns:
- an object implementing the Map interface that will provide backing storage for the specified cache name
 
 - 
isBackingMapPersistentpublic boolean isBackingMapPersistent(String sName) Determine if the contents of the Map that is used by a CacheService to store cached values for a NamedCache with the specified name should be persisted.- Parameters:
- sName- the name of the NamedCache
- Returns:
- true if the CacheService should persist the backing storage of the specified NamedCache
 
 - 
isBackingMapSlidingExpirypublic boolean isBackingMapSlidingExpiry(String sName) Determine if the Map that is used by a CacheService to store cached values for a NamedCache with specified name enables the sliding expiry - the expiry delay being extended by the read operations.- Parameters:
- sName- the name of the NamedCache
- Returns:
- true if the backing map of the specified NamedCache enables the sliding expiry
 
 - 
getStorageAccessAuthorizerpublic StorageAccessAuthorizer getStorageAccessAuthorizer(String sName) Determine theStorageAccessAuthorizerthat is used by a CacheService to secure access to the NamedCache with the specified name.- Parameters:
- sName- the name of the NamedCache
- Returns:
- the StorageAccessAuthorizeror null if the authorizer is not configured
 
 - 
releaseBackingMappublic void releaseBackingMap(String sName, Map map) Release the specified Map that was created using theBackingMapManager.instantiateBackingMap(String)method. This method is invoked by the CacheService when the CacheService no longer requires the specified Map object.- Specified by:
- releaseBackingMapin interface- BackingMapManager
- Overrides:
- releaseBackingMapin class- AbstractBackingMapManager
- Parameters:
- sName- the name of the NamedCache for which the specified Map object has acted as the backing map
- map- the Map object that is being released
 
 - 
getCacheFactorypublic ExtensibleConfigurableCacheFactory getCacheFactory() Obtain the "container" ConfigurableCacheFactory that created this manager and which this manager is bound to.- Returns:
- the ConfigurableCacheFactory that created this manager
 
 
- 
 
-