Package | Description |
---|---|
javax.cache |
This package contains the API for JCache.
|
javax.cache.transaction |
This package contains the transactional support for JCache API.
|
Modifier and Type | Field and Description |
---|---|
protected IsolationLevel |
MutableConfiguration.txnIsolationLevel
The transaction
IsolationLevel . |
Modifier and Type | Method and Description |
---|---|
IsolationLevel |
MutableConfiguration.getTransactionIsolationLevel()
Gets the transaction isolation level.
|
IsolationLevel |
Configuration.getTransactionIsolationLevel()
Gets the transaction isolation level.
|
IsolationLevel |
CacheMXBean.getTransactionIsolationLevel()
Gets the transaction isolation level.
|
Modifier and Type | Method and Description |
---|---|
MutableConfiguration<K,V> |
MutableConfiguration.setTransactions(IsolationLevel level,
Mode mode)
Set the Transaction
IsolationLevel and Mode . |
Constructor and Description |
---|
MutableConfiguration(Iterable<CacheEntryListenerRegistration<? super K,? super V>> cacheEntryListenerRegistrations,
Factory<CacheLoader<K,V>> cacheLoaderFactory,
Factory<CacheWriter<? super K,? super V>> cacheWriterFactory,
Factory<ExpiryPolicy<? super K,? super V>> expiryPolicyFactory,
boolean isReadThrough,
boolean isWriteThrough,
boolean isStatisticsEnabled,
boolean isStoreByValue,
boolean isTransactionsEnabled,
IsolationLevel txnIsolationLevel,
Mode txnMode)
Constructs a
MutableConfiguration based on a set of parameters. |
Modifier and Type | Method and Description |
---|---|
static IsolationLevel |
IsolationLevel.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IsolationLevel[] |
IsolationLevel.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2013. All Rights Reserved.