Class CacheAdapter
CacheFactory
class.
In a simplest form a client code would look like:
Context ctx = new InitialContext();
CacheAdapter adapter = new CacheAdapter(ctx, "tangosol.coherenceTx",
CacheAdapter.CONCUR_OPTIMISTIC, CacheAdapter.TRANSACTION_REPEATABLE_GET, 0);
try
{
NamedCache map = adapter.getNamedCache("MyCache", getClass().getClassLoader(),
new SimpleValidator(), false);
// perform operations on the map
}
finally
{
adapter.close();
}
Note: the CacheAdapter is intended to be used by one and only one thread
at the time and is not thread safe.- Since:
- Coherence 1.2
- Author:
- gg 2002.04.14
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
CacheConnectionSpec is an implementation ofConnectionSpec
interface used to pass the connection info to the adapter.Nested classes/interfaces inherited from class com.tangosol.util.Base
Base.LoggingWriter
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Same asTransactionMap.CONCUR_EXTERNAL
static final int
Same asTransactionMap.CONCUR_OPTIMISTIC
static final int
static final int
static final int
static final int
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct the adapter using a default InitialContext, standard JNDI name, "optimistic" concurrency, "committed" isolation level an no timeout.CacheAdapter
(Context ctx, String sJndiName, int nConcur, int nIsolation, int nTimeout) Construct the adapter using the specified Context and JNDI name -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Close the connection associated with this adapter.void
Connect the adapter to the specified clustered service.void
Connect the adapter to the specified clustered service.protected void
finalize()
Perform cleanup during garbage collection.getDistributedCache
(String sName, ClassLoader loader) Deprecated.getNamedCache
(String sName, ClassLoader loader) Obtain an instance of a NamedCache.getNamedCache
(String sName, ClassLoader loader, TransactionMap.Validator validator, boolean fImmutable) Obtain an instance of a NamedCache.getReplicatedCache
(String sName, ClassLoader loader) Deprecated.protected boolean
Return the connection status.toString()
Return a human readable description of the CacheAdapter.Methods inherited from class com.tangosol.util.Base
azzert, 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, newHashMap, newHashMap, newHashSet, newHashSet, 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
-
Field Details
-
TRANSACTION_GET_COMMITTED
public static final int TRANSACTION_GET_COMMITTED- See Also:
-
TRANSACTION_REPEATABLE_GET
public static final int TRANSACTION_REPEATABLE_GET- See Also:
-
TRANSACTION_SERIALIZABLE
public static final int TRANSACTION_SERIALIZABLE- See Also:
-
CONCUR_PESSIMISTIC
public static final int CONCUR_PESSIMISTIC- See Also:
-
CONCUR_OPTIMISTIC
public static final int CONCUR_OPTIMISTICSame asTransactionMap.CONCUR_OPTIMISTIC
- See Also:
-
CONCUR_EXTERNAL
public static final int CONCUR_EXTERNALSame asTransactionMap.CONCUR_EXTERNAL
- See Also:
-
-
Constructor Details
-
CacheAdapter
public CacheAdapter()Construct the adapter using a default InitialContext, standard JNDI name, "optimistic" concurrency, "committed" isolation level an no timeout. -
CacheAdapter
Construct the adapter using the specified Context and JNDI name- Parameters:
ctx
- the Context object to use for lookup operation; if null, the default InitialiContext is usedsJndiName
- the JNDI name of the Coherence resource adapter; if null, the default name ("tangosol.coherenceTx") is usednConcur
- the default concurrency valuenIsolation
- the default transaction isolation valuenTimeout
- the default transaction timeout value (in seconds)
-
-
Method Details
-
getReplicatedCache
Deprecated.Obtain an instance of a ReplicatedCache.When called within a transaction, the returned cache will be transactional, controlled by the container's transaction coordinator. When called outside of a transaction, the returned cache will be non-transactional, which is equivalent to obtaining the instance directly from CacheFactory.
- Parameters:
sName
- cache name (unique across the cluster). If the NamedCache with the specified name already exists, a reference to the same object will be returned in the same transactional contextloader
- ClassLoader that should be used to deserialize objects inserted in the map by other members of the cluster- Returns:
- NamedCache interface of the ReplicatedCache service
- Throws:
IllegalStateException
- if the adapter is already connected to a different service
-
getDistributedCache
Deprecated.Obtain an instance of a DistributedCache.When called within a transaction, the returned cache will be transactional, controlled by the container's transaction coordinator. When called outside of a transaction, the returned cache will be non-transactional, which is equivalent to obtaining the instance directly from CacheFactory.
- Parameters:
sName
- cache name (unique across the cluster). If the NamedCache with the specified name already exists, a reference to the same object will be returned in the same transactional contextloader
- ClassLoader that should be used to deserialize objects inserted in the map by other members of the cluster- Returns:
- NamedCache interface of the DistributedCache service
- Throws:
IllegalStateException
- if the adapter is already connected to a different service
-
connect
Connect the adapter to the specified clustered service. The service with the specified name must be running for this call to succeed.- Parameters:
sServiceName
- service name (unique across the cluster)sUserName
- name of the user establishing a connection (optional)sPassword
- password for the user establishing a connection (optional)- Throws:
IllegalArgumentException
- if the specified service is not runningIllegalStateException
- if the adapter is already connected or
-
connect
Connect the adapter to the specified clustered service. If the service with the specified name is not running an attempt will be made to start that service [default configuration]. If the name and type are not specified, a ConfigurableCacheFactory will be used to obtain the NamedCache instances.- Parameters:
sServiceName
- service name (unique across the cluster)sServiceType
- service type (i.e. CacheService.TYPE_REPLICATED or CacheService.TYPE_DISTRIBUTED)sUserName
- name of the user establishing a connection (optional)sPassword
- password for the user establishing a connection (optional)- Throws:
IllegalArgumentException
- if the specified service cannot be foundIllegalStateException
- if the adapter is already connected
-
getNamedCache
Obtain an instance of a NamedCache. The NamedCache will be retrieved from the current ConfigurableCacheFactory usingCacheFactory.getCache(sName, loader)
unless the adapter is already connected to a specific cache service, in which case the corresponding NamedCache will be retrieved usingservice.ensureCache(sName, loader)
.When called within a transaction, the returned cache will be transactional, controlled by the container's transaction coordinator. When called outside of a transaction, the returned cache will be non-transactional, which is equivalent to obtaining the instance directly from CacheFactory.
- Parameters:
sName
- cache name (unique across the cluster). If the NamedCache with the specified name already exists, a reference to the same object will be returned in the same transactional contextloader
- ClassLoader that should be used to deserialize objects inserted in the map by other members of the cluster- Returns:
- NamedCache object
-
getNamedCache
public NamedCache getNamedCache(String sName, ClassLoader loader, TransactionMap.Validator validator, boolean fImmutable) Obtain an instance of a NamedCache. The NamedCache will be retrieved from the current ConfigurableCacheFactory usingCacheFactory.getCache(sName, loader)
unless the adapter is already connected to a specific cache service, in which case the corresponding NamedCache will be retrieved usingservice.ensureCache(sName, loader)
.When called within a transaction, the returned cache will be transactional, controlled by the container's transaction coordinator. When called outside of a transaction, the returned cache will be non-transactional, which is equivalent to obtaining the instance directly from CacheFactory.
- Parameters:
sName
- cache name (unique across the cluster). If the NamedCache with the specified name already exists, a reference to the same object will be returned in the same transactional contextloader
- ClassLoader that should be used to deserialize objects inserted in the map by other members of the clustervalidator
- the Validator object to be used to enlist and validate transactional resources; this parameter is only used within transactional context and only for optimistic concurrencyfImmutable
- specifies whether or not the values kept in this cache are known to be immutable; this parameter is only used within transactional context- Returns:
- NamedCache object
- Since:
- Coherence 2.3
- See Also:
-
close
public void close()Close the connection associated with this adapter. -
isConnected
protected boolean isConnected()Return the connection status.- Returns:
- true if the adapter is currently connected; false otherwise.
-
toString
Return a human readable description of the CacheAdapter. -
finalize
protected void finalize()Perform cleanup during garbage collection.
-
getNamedCache(java.lang.String, java.lang.ClassLoader)
instead.