Interface AuxiliaryCacheAttributes
- All Superinterfaces:
Cloneable
,Serializable
- All Known Subinterfaces:
ICommonRemoteCacheAttributes
,IDiskCacheAttributes
,ILateralCacheAttributes
,IRemoteCacheAttributes
,IRemoteCacheServerAttributes
,ITCPLateralCacheAttributes
- All Known Implementing Classes:
AbstractAuxiliaryCacheAttributes
,AbstractDiskCacheAttributes
,BlockDiskCacheAttributes
,CommonRemoteCacheAttributes
,IndexedDiskCacheAttributes
,JDBCDiskCacheAttributes
,LateralCacheAttributes
,MySQLDiskCacheAttributes
,RemoteCacheAttributes
,RemoteCacheServerAttributes
,RemoteHttpCacheAttributes
,RemoteHttpCacheServerAttributes
,TCPLateralCacheAttributes
This is a nominal interface that auxiliary cache attributes should implement. This allows the
auxiliary mangers to share a common interface.
-
Method Summary
Modifier and TypeMethodDescriptionclone()
Clone objectGets the cacheName attribute of the AuxiliaryCacheAttributes objectSets the pool name to use.getName()
Gets the name attribute of the AuxiliaryCacheAttributes objectvoid
Sets the name of the cache, referenced by the appropriate manager.void
If you choose a POOLED event queue type, the value of EventQueuePoolName will be used.void
SINGLE is the default.void
Name known by configurator
-
Method Details
-
setCacheName
Sets the name of the cache, referenced by the appropriate manager.- Parameters:
s
- The new cacheName value
-
getCacheName
Gets the cacheName attribute of the AuxiliaryCacheAttributes object- Returns:
- The cacheName value
-
setName
Name known by configurator- Parameters:
s
- The new name value
-
getName
Gets the name attribute of the AuxiliaryCacheAttributes object- Returns:
- The name value
-
setEventQueueType
SINGLE is the default. If you choose POOLED, the value of EventQueuePoolName will be used- Parameters:
s
- SINGLE or POOLED
-
getEventQueueType
- Returns:
- SINGLE or POOLED
-
setEventQueuePoolName
If you choose a POOLED event queue type, the value of EventQueuePoolName will be used. This is ignored if the pool type is SINGLE- Parameters:
s
- SINGLE or POOLED
-
getEventQueuePoolName
Sets the pool name to use. If a pool is not found by this name, the thread pool manager will return a default configuration.- Returns:
- name of thread pool to use for this auxiliary
-
clone
Clone object
-