Uses of Class
org.apache.ignite.transactions.TransactionException
-
Packages that use TransactionException Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs.org.apache.ignite.internal.processors.cache This package contain cache-related processors & persistence implementation.org.apache.ignite.transactions Contains transaction-related classes. -
-
Uses of TransactionException in org.apache.ignite
Methods in org.apache.ignite that throw TransactionException Modifier and Type Method Description booleanIgniteCache. containsKey(K key)IgniteFuture<Boolean>IgniteCache. containsKeyAsync(K key)Asynchronously determines if theCachecontains an entry for the specified key.booleanIgniteCache. containsKeys(Set<? extends K> keys)Determines if theCachecontains entries for the specified keys.IgniteFuture<Boolean>IgniteCache. containsKeysAsync(Set<? extends K> keys)Asynchronously determines if theCachecontains entries for the specified keys.VIgniteCache. get(K key)Map<K,V>IgniteCache. getAll(Set<? extends K> keys)IgniteFuture<Map<K,V>>IgniteCache. getAllAsync(Set<? extends K> keys)Asynchronously gets a collection of entries from theCache, returning them asMapof the values associated with the set of keys requested.VIgniteCache. getAndPut(K key, V val)IgniteFuture<V>IgniteCache. getAndPutAsync(K key, V val)Asynchronously associates the specified value with the specified key in this cache, returning an existing value if one existed as the future result.VIgniteCache. getAndPutIfAbsent(K key, V val)Stores given key-value pair in cache only if cache had no previous mapping for it.IgniteFuture<V>IgniteCache. getAndPutIfAbsentAsync(K key, V val)Asynchronously stores given key-value pair in cache only if cache had no previous mapping for it.VIgniteCache. getAndRemove(K key)IgniteFuture<V>IgniteCache. getAndRemoveAsync(K key)Asynchronously removes the entry for a key only if currently mapped to some value.VIgniteCache. getAndReplace(K key, V val)Collection<CacheEntry<K,V>>IgniteCache. getEntries(Set<? extends K> keys)Gets a collection of entries from theCache.IgniteFuture<Collection<CacheEntry<K,V>>>IgniteCache. getEntriesAsync(Set<? extends K> keys)Asynchronously gets a collection of entries from theCache.CacheEntry<K,V>IgniteCache. getEntry(K key)Gets an entry from the cache.IgniteFuture<CacheEntry<K,V>>IgniteCache. getEntryAsync(K key)Asynchronously gets an entry from the cache.<T> TIgniteCache. invoke(K key, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... arguments)<T> TIgniteCache. invoke(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... arguments)Invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key.<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>IgniteCache. invokeAll(Map<? extends K,? extends javax.cache.processor.EntryProcessor<K,V,T>> map, Object... args)Asynchronously invokes eachEntryProcessorfrom map's values against the correspondentCache.Entryspecified by map's key set.<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>IgniteCache. invokeAll(Set<? extends K> keys, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... args)<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>IgniteCache. invokeAll(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<Map<K,javax.cache.processor.EntryProcessorResult<T>>>IgniteCache. invokeAllAsync(Map<? extends K,? extends javax.cache.processor.EntryProcessor<K,V,T>> map, Object... args)Asynchronous version of theIgniteCache.invokeAll(Map, Object...)method.<T> IgniteFuture<Map<K,javax.cache.processor.EntryProcessorResult<T>>>IgniteCache. invokeAllAsync(Set<? extends K> keys, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... args)Asynchronously invokes anEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<Map<K,javax.cache.processor.EntryProcessorResult<T>>>IgniteCache. invokeAllAsync(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Asynchronously invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<T>IgniteCache. invokeAsync(K key, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... arguments)Asynchronously invokes anEntryProcessoragainst theCache.Entryspecified by the provided key.<T> IgniteFuture<T>IgniteCache. invokeAsync(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... arguments)Asynchronously invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key.voidIgniteCache. put(K key, V val)voidIgniteCache. putAll(Map<? extends K,? extends V> map)IgniteFuture<Void>IgniteCache. putAllAsync(Map<? extends K,? extends V> map)Asynchronously copies all of the entries from the specified map to theCache.IgniteFuture<Void>IgniteCache. putAsync(K key, V val)Asynchronously associates the specified value with the specified key in the cache.booleanIgniteCache. putIfAbsent(K key, V val)booleanIgniteCache. remove(K key)booleanIgniteCache. remove(K key, V oldVal)voidIgniteCache. removeAll(Set<? extends K> keys)IgniteFuture<Void>IgniteCache. removeAllAsync(Set<? extends K> keys)Asynchronously removes entries for the specified keys.IgniteFuture<Boolean>IgniteCache. removeAsync(K key)Asynchronously removes the mapping for a key from this cache if it is present.IgniteFuture<Boolean>IgniteCache. removeAsync(K key, V oldVal)Asynchronously removes the mapping for a key only if currently mapped to the given value.booleanIgniteCache. replace(K key, V val)booleanIgniteCache. replace(K key, V oldVal, V newVal)IgniteFuture<Boolean>IgniteCache. replaceAsync(K key, V val)Asynchronously replaces the entry for a key only if currently mapped to a given value.IgniteFuture<Boolean>IgniteCache. replaceAsync(K key, V oldVal, V newVal)Asynchronous version of theIgniteCache.replace(Object, Object, Object). -
Uses of TransactionException in org.apache.ignite.internal.processors.cache
Methods in org.apache.ignite.internal.processors.cache that throw TransactionException Modifier and Type Method Description booleanGatewayProtectedCacheProxy. containsKey(K key)IgniteFuture<Boolean>GatewayProtectedCacheProxy. containsKeyAsync(K key)Asynchronously determines if theCachecontains an entry for the specified key.booleanGatewayProtectedCacheProxy. containsKeys(Set<? extends K> keys)Determines if theCachecontains entries for the specified keys.IgniteFuture<Boolean>GatewayProtectedCacheProxy. containsKeysAsync(Set<? extends K> keys)Asynchronously determines if theCachecontains entries for the specified keys.VGatewayProtectedCacheProxy. get(K key)Map<K,V>GatewayProtectedCacheProxy. getAll(Set<? extends K> keys)IgniteFuture<Map<K,V>>GatewayProtectedCacheProxy. getAllAsync(Set<? extends K> keys)Asynchronously gets a collection of entries from theCache, returning them asMapof the values associated with the set of keys requested.VGatewayProtectedCacheProxy. getAndPut(K key, V val)IgniteFuture<V>GatewayProtectedCacheProxy. getAndPutAsync(K key, V val)Asynchronously associates the specified value with the specified key in this cache, returning an existing value if one existed as the future result.VGatewayProtectedCacheProxy. getAndPutIfAbsent(K key, V val)Stores given key-value pair in cache only if cache had no previous mapping for it.IgniteFuture<V>GatewayProtectedCacheProxy. getAndPutIfAbsentAsync(K key, V val)Asynchronously stores given key-value pair in cache only if cache had no previous mapping for it.VGatewayProtectedCacheProxy. getAndRemove(K key)IgniteFuture<V>GatewayProtectedCacheProxy. getAndRemoveAsync(K key)Asynchronously removes the entry for a key only if currently mapped to some value.VGatewayProtectedCacheProxy. getAndReplace(K key, V val)Collection<CacheEntry<K,V>>GatewayProtectedCacheProxy. getEntries(Set<? extends K> keys)Gets a collection of entries from theCache.IgniteFuture<Collection<CacheEntry<K,V>>>GatewayProtectedCacheProxy. getEntriesAsync(Set<? extends K> keys)Asynchronously gets a collection of entries from theCache.CacheEntry<K,V>GatewayProtectedCacheProxy. getEntry(K key)Gets an entry from the cache.IgniteFuture<CacheEntry<K,V>>GatewayProtectedCacheProxy. getEntryAsync(K key)Asynchronously gets an entry from the cache.<T> TGatewayProtectedCacheProxy. invoke(K key, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... arguments)<T> TGatewayProtectedCacheProxy. invoke(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... arguments)Invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key.<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>GatewayProtectedCacheProxy. invokeAll(Map<? extends K,? extends javax.cache.processor.EntryProcessor<K,V,T>> map, Object... args)Asynchronously invokes eachEntryProcessorfrom map's values against the correspondentCache.Entryspecified by map's key set.<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>GatewayProtectedCacheProxy. invokeAll(Set<? extends K> keys, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... args)<T> Map<K,javax.cache.processor.EntryProcessorResult<T>>GatewayProtectedCacheProxy. invokeAll(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<Map<K,javax.cache.processor.EntryProcessorResult<T>>>GatewayProtectedCacheProxy. invokeAllAsync(Map<? extends K,? extends javax.cache.processor.EntryProcessor<K,V,T>> map, Object... args)Asynchronous version of theIgniteCache.invokeAll(Map, Object...)method.<T> IgniteFuture<Map<K,javax.cache.processor.EntryProcessorResult<T>>>GatewayProtectedCacheProxy. invokeAllAsync(Set<? extends K> keys, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... args)Asynchronously invokes anEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<Map<K,javax.cache.processor.EntryProcessorResult<T>>>GatewayProtectedCacheProxy. invokeAllAsync(Set<? extends K> keys, CacheEntryProcessor<K,V,T> entryProcessor, Object... args)Asynchronously invokes anCacheEntryProcessoragainst the set ofCache.Entrys specified by the set of keys.<T> IgniteFuture<T>GatewayProtectedCacheProxy. invokeAsync(K key, javax.cache.processor.EntryProcessor<K,V,T> entryProcessor, Object... arguments)Asynchronously invokes anEntryProcessoragainst theCache.Entryspecified by the provided key.<T> IgniteFuture<T>GatewayProtectedCacheProxy. invokeAsync(K key, CacheEntryProcessor<K,V,T> entryProcessor, Object... arguments)Asynchronously invokes anCacheEntryProcessoragainst theCache.Entryspecified by the provided key.voidGatewayProtectedCacheProxy. put(K key, V val)voidGatewayProtectedCacheProxy. putAll(Map<? extends K,? extends V> map)IgniteFuture<Void>GatewayProtectedCacheProxy. putAllAsync(Map<? extends K,? extends V> map)Asynchronously copies all of the entries from the specified map to theCache.IgniteFuture<Void>GatewayProtectedCacheProxy. putAsync(K key, V val)Asynchronously associates the specified value with the specified key in the cache.booleanGatewayProtectedCacheProxy. putIfAbsent(K key, V val)booleanGatewayProtectedCacheProxy. remove(K key)booleanGatewayProtectedCacheProxy. remove(K key, V oldVal)voidGatewayProtectedCacheProxy. removeAll(Set<? extends K> keys)IgniteFuture<Void>GatewayProtectedCacheProxy. removeAllAsync(Set<? extends K> keys)Asynchronously removes entries for the specified keys.IgniteFuture<Boolean>GatewayProtectedCacheProxy. removeAsync(K key)Asynchronously removes the mapping for a key from this cache if it is present.IgniteFuture<Boolean>GatewayProtectedCacheProxy. removeAsync(K key, V oldVal)Asynchronously removes the mapping for a key only if currently mapped to the given value.booleanGatewayProtectedCacheProxy. replace(K key, V val)booleanGatewayProtectedCacheProxy. replace(K key, V oldVal, V newVal)IgniteFuture<Boolean>GatewayProtectedCacheProxy. replaceAsync(K key, V val)Asynchronously replaces the entry for a key only if currently mapped to a given value.IgniteFuture<Boolean>GatewayProtectedCacheProxy. replaceAsync(K key, V oldVal, V newVal)Asynchronous version of theIgniteCache.replace(Object, Object, Object). -
Uses of TransactionException in org.apache.ignite.transactions
Subclasses of TransactionException in org.apache.ignite.transactions Modifier and Type Class Description classTransactionDeadlockExceptionTransaction deadlock exception.classTransactionHeuristicExceptionException thrown whenever grid transaction enters an unknown state.classTransactionOptimisticExceptionException thrown whenever grid transactions fail optimistically.classTransactionRollbackExceptionException thrown whenever grid transactions has been automatically rolled back.classTransactionTimeoutExceptionException thrown whenever transactions time out.
-