Uses of Interface
org.multiverse.api.Txn
-
-
Uses of Txn in org.multiverse.api
Fields in org.multiverse.api declared as Txn Modifier and Type Field Description TxnTxnThreadLocal.Container. txnMethods in org.multiverse.api that return Txn Modifier and Type Method Description static TxnTxnThreadLocal. getRequiredThreadLocalTxn()Gets the threadlocalTxnor throws aTxnMandatoryExceptionif no transaction is found.static TxnTxnThreadLocal. getThreadLocalTxn()Gets the threadlocalTxn.TxnStm. newDefaultTxn()Starts a default Txn that is useful for testing/experimentation purposes.TxnTxnFactory. newTxn()Creates a newTxn.Methods in org.multiverse.api with parameters of type Txn Modifier and Type Method Description voidLock. acquire(Txn txn, LockMode desiredLockMode)Acquires a Lock with the provided LockMode using the provided transaction.voidTxnObject. ensure(Txn self)Does an ensure.LockModeLock. getLockMode(Txn txn)Gets the LockMode the transaction has on the Lock.static voidTxnThreadLocal. setThreadLocalTxn(Txn txn)Sets the threadlocal transaction.java.lang.StringTxnObject. toString(Txn txn)Returns a String representation of the object using the providedTxn. -
Uses of Txn in org.multiverse.api.callables
Methods in org.multiverse.api.callables with parameters of type Txn Modifier and Type Method Description booleanTxnBooleanCallable. call(Txn txn)Executes the callable.ETxnCallable. call(Txn txn)Executes the callable.doubleTxnDoubleCallable. call(Txn txn)Executes the callable.intTxnIntCallable. call(Txn txn)Executes the callable.longTxnLongCallable. call(Txn txn)Executes the callable.voidTxnVoidCallable. call(Txn txn)Executes the callable. -
Uses of Txn in org.multiverse.api.collections
Methods in org.multiverse.api.collections with parameters of type Txn Modifier and Type Method Description booleanTxnCollection. add(Txn txn, E e)Ensures that this collection contains the specified element (optional operation).booleanTxnCollection. addAll(Txn txn, java.util.Collection<? extends E> c)Adds all of the elements in the specified collection to this collection (optional operation).booleanTxnCollection. addAll(Txn txn, TxnCollection<? extends E> c)Adds all of the elements in the specified collection to this collection (optional operation).voidTxnDeque. addFirst(Txn txn, E e)voidTxnDeque. addLast(Txn txn, E e)voidTxnCollection. clear(Txn txn)Removes all of the elements from this collection (optional operation).voidTxnMap. clear(Txn txn)Removes all of the mappings from this map (optional operation).booleanTxnCollection. contains(Txn txn, java.lang.Object o)Returns true if this collection contains the specified element.booleanTxnCollection. containsAll(Txn txn, java.util.Collection<?> c)Returns true if this collection contains all of the elements in the specified collection.booleanTxnMap. containsKey(Txn txn, java.lang.Object key)Returns true if this map contains a mapping for the specified key.booleanTxnMap. containsValue(Txn txn, java.lang.Object value)Returns true if this map maps one or more keys to the specified value.TxnIterator<E>TxnDeque. descendingIterator(Txn txn)ETxnQueue. element(Txn txn)TxnSet<java.util.Map.Entry<K,V>>TxnMap. entrySet(Txn txn)Returns aTxnSetview of the mappings contained in this map.ETxnList. get(Txn txn, int index)VTxnMap. get(Txn txn, java.lang.Object key)Returns the value to which the specified key is mapped, ornullif this map contains no mapping for the key.ETxnDeque. getFirst(Txn txn)ETxnDeque. getLast(Txn txn)booleanTxnIterator. hasNext(Txn txn)Returns true if the iteration has more elements.intTxnList. indexOf(Txn txn, java.lang.Object item)booleanTxnCollection. isEmpty(Txn txn)Returns true if this collection contains no elements.booleanTxnMap. isEmpty(Txn txn)Returns true if this map contains no key-value mappings.TxnIterator<E>TxnIterable. iterator(Txn txn)Returns an iterator over a set of elements of type T.TxnSet<K>TxnMap. keySet(Txn txn)Returns aTxnSetview of the keys contained in this map.intTxnList. lastIndexOf(Txn txn, java.lang.Object item)ETxnIterator. next(Txn txn)Returns the next element in the iteration.booleanTxnQueue. offer(Txn tx, E item)booleanTxnStack. offer(Txn txn, E item)booleanTxnDeque. offerFirst(Txn txn, E e)booleanTxnDeque. offerLast(Txn txn, E e)ETxnQueue. peek(Txn txn)ETxnStack. peek(Txn txn)ETxnDeque. peekFirst(Txn txn)ETxnDeque. peekLast(Txn txn)ETxnQueue. poll(Txn txn)ETxnStack. poll(Txn txn)ETxnDeque. pollFirst(Txn txn)ETxnDeque. pollLast(Txn txn)ETxnDeque. pop(Txn txn)ETxnStack. pop(Txn txn)voidTxnDeque. push(Txn txn, E e)voidTxnStack. push(Txn txn, E item)VTxnMap. put(Txn txn, K key, V value)Associates the specified value with the specified key in this map (optional operation).voidTxnQueue. put(Txn txn, E item)voidTxnMap. putAll(Txn txn, java.util.Map<? extends K,? extends V> m)Copies all of the mappings from the specified map to this map (optional operation).voidTxnDeque. putFirst(Txn txn, E item)voidTxnDeque. putLast(Txn txn, E item)booleanTxnCollection. remove(Txn txn, java.lang.Object o)Removes a single instance of the specified element from this collection, if it is present (optional operation).voidTxnIterator. remove(Txn txn)Removes from the underlying collection the last element returned by the iterator (optional operation).ETxnList. remove(Txn txn, int index)VTxnMap. remove(Txn txn, java.lang.Object key)Removes the mapping for a key from this map if it is present (optional operation).ETxnQueue. remove(Txn txn)ETxnDeque. removeFirst(Txn txn)booleanTxnDeque. removeFirstOccurrence(Txn txn, java.lang.Object o)ETxnDeque. removeLast(Txn txn)booleanTxnDeque. removeLastOccurrence(Txn txn, java.lang.Object o)ETxnList. set(Txn txn, int index, E element)intTxnCollection. size(Txn txn)Returns the number of elements in this collection.intTxnMap. size(Txn txn)Returns the number of key-value mappings in this map.ETxnQueue. take(Txn txn)ETxnDeque. takeFirst(Txn txn)ETxnDeque. takeLast(Txn txn)java.lang.StringTxnCollection. toString(Txn txn)java.lang.StringTxnMap. toString(Txn txn)TxnCollection<V>TxnMap. values(Txn txn)Returns aTxnCollectionview of the values contained in this map. -
Uses of Txn in org.multiverse.api.lifecycle
Methods in org.multiverse.api.lifecycle with parameters of type Txn Modifier and Type Method Description voidTxnListener. notify(Txn txn, TxnEvent e) -
Uses of Txn in org.multiverse.api.references
Methods in org.multiverse.api.references with parameters of type Txn Modifier and Type Method Description booleanTxnBoolean. alterAndGet(Txn txn, BooleanFunction function)Alters the value stored in this Ref using the provided function and lifting on the provided txn.doubleTxnDouble. alterAndGet(Txn txn, DoubleFunction function)Alters the value stored in this Ref using the provided function and lifting on the provided txn.intTxnInteger. alterAndGet(Txn txn, IntFunction function)Alters the value stored in this Ref using the provided function and lifting on the provided txn.longTxnLong. alterAndGet(Txn txn, LongFunction function)Alters the value stored in this Ref using the provided function and lifting on the provided txn.ETxnRef. alterAndGet(Txn txn, Function<E> function)Alters the value stored in this Ref using the provided function and lifting on the provided txn.voidTxnBoolean. await(Txn txn, boolean value)Awaits for the reference to become the given value.voidTxnBoolean. await(Txn txn, BooleanPredicate predicate)Awaits until the predicate holds using the provided txn.voidTxnDouble. await(Txn txn, double value)Awaits for the reference to become the given value.voidTxnDouble. await(Txn txn, DoublePredicate predicate)Awaits until the predicate holds using the provided txn.voidTxnInteger. await(Txn txn, int value)Awaits for the reference to become the given value.voidTxnInteger. await(Txn txn, IntPredicate predicate)Awaits until the predicate holds using the provided txn.voidTxnLong. await(Txn txn, long value)Awaits for the reference to become the given value.voidTxnLong. await(Txn txn, LongPredicate predicate)Awaits until the predicate holds using the provided txn.voidTxnRef. await(Txn txn, E value)Awaits for the reference to become the given value.voidTxnRef. await(Txn txn, Predicate<E> predicate)Awaits until the predicate holds using the provided txn.ETxnRef. awaitNotNullAndGet(Txn txn)Awaits for the value to become not null using the provided txn.voidTxnRef. awaitNull(Txn txn)Awaits for the value to become not null using the provided txn.voidTxnBoolean. commute(Txn txn, BooleanFunction function)Applies the function on the ref in a commuting manner.voidTxnDouble. commute(Txn txn, DoubleFunction function)Applies the function on the ref in a commuting manner.voidTxnInteger. commute(Txn txn, IntFunction function)Applies the function on the ref in a commuting manner.voidTxnLong. commute(Txn txn, LongFunction function)Applies the function on the ref in a commuting manner.voidTxnRef. commute(Txn txn, Function<E> function)Applies the function on the ref in a commuting manner.voidTxnInteger. decrement(Txn txn)Decrements the value by one using the provided txn.voidTxnInteger. decrement(Txn txn, int amount)Decrements the value by the given amount using the provided txn.voidTxnLong. decrement(Txn txn)Decrements the value by one using the provided txn.voidTxnLong. decrement(Txn txn, long amount)Decrements the value by the given amount using the provided txn.booleanTxnBoolean. get(Txn txn)Gets the value using the provided txn.doubleTxnDouble. get(Txn txn)Gets the value using the provided txn.intTxnInteger. get(Txn txn)Gets the value using the provided txn.longTxnLong. get(Txn txn)Gets the value using the provided txn.ETxnRef. get(Txn txn)Gets the value using the provided txn.booleanTxnBoolean. getAndAlter(Txn txn, BooleanFunction function)Alters the value stored in this Ref using the function and returns the old value, using the provided txn.doubleTxnDouble. getAndAlter(Txn txn, DoubleFunction function)Alters the value stored in this Ref using the function and returns the old value, using the provided txn.intTxnInteger. getAndAlter(Txn txn, IntFunction function)Alters the value stored in this Ref using the function and returns the old value, using the provided txn.longTxnLong. getAndAlter(Txn txn, LongFunction function)Alters the value stored in this Ref using the function and returns the old value, using the provided txn.ETxnRef. getAndAlter(Txn txn, Function<E> function)Alters the value stored in this Ref using the function and returns the old value, using the provided txn.doubleTxnDouble. getAndIncrement(Txn txn, double amount)Increments the value and returns the old value using the provided txn.intTxnInteger. getAndIncrement(Txn txn, int amount)Increments the value and returns the old value using the provided txn.longTxnLong. getAndIncrement(Txn txn, long amount)Increments the value and returns the old value using the provided txn.booleanTxnBoolean. getAndLock(Txn txn, LockMode lockMode)Gets the value using the provided txn and acquired the lock with the specified LockMode.doubleTxnDouble. getAndLock(Txn txn, LockMode lockMode)Gets the value using the provided txn and acquired the lock with the specified LockMode.intTxnInteger. getAndLock(Txn txn, LockMode lockMode)Gets the value using the provided txn and acquired the lock with the specified LockMode.longTxnLong. getAndLock(Txn txn, LockMode lockMode)Gets the value using the provided txn and acquired the lock with the specified LockMode.ETxnRef. getAndLock(Txn txn, LockMode lockMode)Gets the value using the provided txn and acquired the lock with the specified LockMode.booleanTxnBoolean. getAndSet(Txn txn, boolean value)Sets the value using the provided txn.doubleTxnDouble. getAndSet(Txn txn, double value)Sets the value using the provided txn.intTxnInteger. getAndSet(Txn txn, int value)Sets the value using the provided txn.longTxnLong. getAndSet(Txn txn, long value)Sets the value using the provided txn.ETxnRef. getAndSet(Txn txn, E value)Sets the value using the provided txn.booleanTxnBoolean. getAndSetAndLock(Txn txn, boolean value, LockMode lockMode)Sets the value and acquired the Lock with the provided LockMode.doubleTxnDouble. getAndSetAndLock(Txn txn, double value, LockMode lockMode)Sets the value and acquired the Lock with the provided LockMode.intTxnInteger. getAndSetAndLock(Txn txn, int value, LockMode lockMode)Sets the value and acquired the Lock with the provided LockMode.longTxnLong. getAndSetAndLock(Txn txn, long value, LockMode lockMode)Sets the value and acquired the Lock with the provided LockMode.ETxnRef. getAndSetAndLock(Txn txn, E value, LockMode lockMode)Sets the value and acquired the Lock with the provided LockMode.voidTxnInteger. increment(Txn txn)Increments the value by one using the provided txn.voidTxnInteger. increment(Txn txn, int amount)Increments the value by the given amount using the provided txn.voidTxnLong. increment(Txn txn)Increments the value by one using the provided txn.voidTxnLong. increment(Txn txn, long amount)Increments the value by the given amount using the provided txn.doubleTxnDouble. incrementAndGet(Txn txn, double amount)Increments and gets the new value using the provided txn.intTxnInteger. incrementAndGet(Txn txn, int amount)Increments and gets the new value using the provided txn.longTxnLong. incrementAndGet(Txn txn, long amount)Increments and gets the new value using the provided txn.booleanTxnRef. isNull(Txn txn)Checks if the current value is null using the provided txn.booleanTxnBoolean. set(Txn txn, boolean value)Sets the new value using the provided txn.doubleTxnDouble. set(Txn txn, double value)Sets the new value using the provided txn.intTxnInteger. set(Txn txn, int value)Sets the new value using the provided txn.longTxnLong. set(Txn txn, long value)Sets the new value using the provided txn.ETxnRef. set(Txn txn, E value)Sets the new value using the provided txn.booleanTxnBoolean. setAndLock(Txn txn, boolean value, LockMode lockMode)Sets the new value using the provided txn.doubleTxnDouble. setAndLock(Txn txn, double value, LockMode lockMode)Sets the new value using the provided txn.intTxnInteger. setAndLock(Txn txn, int value, LockMode lockMode)Sets the new value using the provided txn.longTxnLong. setAndLock(Txn txn, long value, LockMode lockMode)Sets the new value using the provided txn.ETxnRef. setAndLock(Txn txn, E value, LockMode lockMode)Sets the new value using the provided txn. -
Uses of Txn in org.multiverse.collections
Methods in org.multiverse.collections with parameters of type Txn Modifier and Type Method Description booleanNaiveTxnHashSet. add(Txn tx, E e)booleanNaiveTxnLinkedList. add(Txn tx, E e)booleanNaiveTxnStack. add(Txn tx, E e)booleanAbstractTxnCollection. addAll(Txn tx, java.util.Collection<? extends E> c)booleanAbstractTxnCollection. addAll(Txn tx, TxnCollection<? extends E> c)(package private) voidNaiveTxnHashMap. addEntry(Txn tx, int hash, K key, V value, int bucketIndex)voidNaiveTxnLinkedList. addFirst(Txn tx, E e)voidNaiveTxnLinkedList. addLast(Txn tx, E e)voidNaiveTxnHashMap. clear(Txn tx)voidNaiveTxnHashSet. clear(Txn tx)voidNaiveTxnLinkedList. clear(Txn tx)voidNaiveTxnStack. clear(Txn tx)booleanNaiveTxnHashSet. contains(Txn tx, java.lang.Object o)booleanNaiveTxnLinkedList. contains(Txn tx, java.lang.Object o)booleanNaiveTxnStack. contains(Txn tx, java.lang.Object o)booleanAbstractTxnCollection. containsAll(Txn tx, java.util.Collection<?> c)booleanNaiveTxnHashMap. containsKey(Txn tx, java.lang.Object key)booleanNaiveTxnHashMap. containsValue(Txn tx, java.lang.Object value)TxnIterator<E>NaiveTxnLinkedList. descendingIterator(Txn tx)ENaiveTxnLinkedList. element(Txn tx)private NaiveTxnLinkedList.Entry<E>NaiveTxnLinkedList. entry(Txn tx, int index)TxnSet<java.util.Map.Entry<K,V>>NaiveTxnHashMap. entrySet(Txn tx)VNaiveTxnHashMap. get(Txn tx, java.lang.Object key)ENaiveTxnLinkedList. get(Txn tx, int index)private NaiveTxnHashMap.NaiveEntry<K,V>NaiveTxnHashMap. getEntry(Txn tx, java.lang.Object key)ENaiveTxnLinkedList. getFirst(Txn tx)ENaiveTxnLinkedList. getLast(Txn tx)booleanNaiveTxnHashSet.It. hasNext(Txn tx)booleanNaiveTxnStack.It. hasNext(Txn tx)intNaiveTxnLinkedList. indexOf(Txn tx, java.lang.Object item)booleanAbstractTxnCollection. isEmpty(Txn tx)booleanAbstractTxnMap. isEmpty(Txn tx)TxnIterator<E>NaiveTxnHashSet. iterator(Txn tx)TxnIterator<E>NaiveTxnLinkedList. iterator(Txn tx)TxnIterator<E>NaiveTxnStack. iterator(Txn tx)TxnSet<K>NaiveTxnHashMap. keySet(Txn tx)intNaiveTxnLinkedList. lastIndexOf(Txn tx, java.lang.Object item)ENaiveTxnHashSet.It. next(Txn tx)ENaiveTxnStack.It. next(Txn tx)booleanNaiveTxnLinkedList. offer(Txn tx, E item)booleanNaiveTxnStack. offer(Txn tx, E item)booleanNaiveTxnLinkedList. offerFirst(Txn tx, E item)booleanNaiveTxnLinkedList. offerLast(Txn tx, E item)ENaiveTxnLinkedList. peek(Txn tx)ENaiveTxnStack. peek(Txn tx)ENaiveTxnLinkedList. peekFirst(Txn tx)ENaiveTxnLinkedList. peekLast(Txn tx)ENaiveTxnLinkedList. poll(Txn tx)ENaiveTxnStack. poll(Txn tx)ENaiveTxnLinkedList. pollFirst(Txn tx)ENaiveTxnLinkedList. pollLast(Txn tx)ENaiveTxnLinkedList. pop(Txn tx)ENaiveTxnStack. pop(Txn tx)voidNaiveTxnLinkedList. push(Txn tx, E e)voidNaiveTxnStack. push(Txn tx, E item)VNaiveTxnHashMap. put(Txn tx, K key, V value)voidNaiveTxnLinkedList. put(Txn tx, E item)voidAbstractTxnMap. putAll(Txn tx, java.util.Map<? extends K,? extends V> m)voidNaiveTxnLinkedList. putFirst(Txn tx, E item)voidNaiveTxnLinkedList. putLast(Txn tx, E item)VNaiveTxnHashMap. remove(Txn tx, java.lang.Object key)voidNaiveTxnHashSet.It. remove(Txn tx)booleanNaiveTxnHashSet. remove(Txn tx, java.lang.Object item)ENaiveTxnLinkedList. remove(Txn tx)ENaiveTxnLinkedList. remove(Txn tx, int index)booleanNaiveTxnLinkedList. remove(Txn tx, java.lang.Object o)voidNaiveTxnStack.It. remove(Txn tx)booleanNaiveTxnStack. remove(Txn tx, java.lang.Object o)ENaiveTxnLinkedList. removeFirst(Txn tx)booleanNaiveTxnLinkedList. removeFirstOccurrence(Txn tx, java.lang.Object o)ENaiveTxnLinkedList. removeLast(Txn tx)booleanNaiveTxnLinkedList. removeLastOccurrence(Txn tx, java.lang.Object o)(package private) voidNaiveTxnHashMap. resize(Txn tx, int newCapacity)ENaiveTxnLinkedList. set(Txn tx, int index, E element)intNaiveTxnHashMap. size(Txn tx)intNaiveTxnHashSet. size(Txn tx)intNaiveTxnLinkedList. size(Txn tx)intNaiveTxnStack. size(Txn tx)ENaiveTxnLinkedList. take(Txn tx)ENaiveTxnLinkedList. takeFirst(Txn tx)ENaiveTxnLinkedList. takeLast(Txn tx)java.lang.StringNaiveTxnHashMap. toString(Txn tx)java.lang.StringNaiveTxnHashSet. toString(Txn tx)java.lang.StringNaiveTxnLinkedList. toString(Txn tx)java.lang.StringNaiveTxnStack. toString(Txn tx)(package private) voidNaiveTxnHashMap. transfer(Txn tx, TxnRef<NaiveTxnHashMap.NaiveEntry>[] newTable)TxnCollection<V>NaiveTxnHashMap. values(Txn tx) -
Uses of Txn in org.multiverse.commitbarriers
Methods in org.multiverse.commitbarriers with parameters of type Txn Modifier and Type Method Description protected static voidCommitBarrier. ensureNotDead(Txn tx, java.lang.String operation)Ensures that a transaction is not dead.protected voidCommitBarrier. finish(Txn tx)Finishes a Txn.voidCountDownCommitBarrier. incParties(Txn tx, int extra)Increases the number of parties that need to return before this CommitBarrier can open.voidCommitBarrier. joinCommit(Txn tx)Joins this CommitBarrier with the provided transaction.voidCommitBarrier. joinCommitUninterruptibly(Txn tx)Joins this CommitBarrier with the provided transaction.voidCountDownCommitBarrier.RestorePartiesCompensatingTask. notify(Txn tx, TxnEvent event)booleanCommitBarrier. tryJoinCommit(Txn tx)Tries to joins this CommitBarrier with the provided transaction.booleanCommitBarrier. tryJoinCommit(Txn tx, long timeout, java.util.concurrent.TimeUnit unit)Tries to joins this CommitBarrier with the provided transaction.booleanCommitBarrier. tryJoinCommitUninterruptibly(Txn tx, long timeout, java.util.concurrent.TimeUnit unit)Tries to joins this CommitBarrier with the provided transaction.voidVetoCommitBarrier. vetoCommit(Txn tx)Veto's the commit of this VetoCommitBarrier including the provided transaction. -
Uses of Txn in org.multiverse.stms.gamma
Methods in org.multiverse.stms.gamma with parameters of type Txn Modifier and Type Method Description static GammaTxnGammaStmUtils. asGammaTxn(Txn tx) -
Uses of Txn in org.multiverse.stms.gamma.transactionalobjects
Methods in org.multiverse.stms.gamma.transactionalobjects with parameters of type Txn Modifier and Type Method Description voidBaseGammaTxnRef. acquire(Txn tx, LockMode desiredLockMode)booleanGammaTxnBoolean. alterAndGet(Txn tx, BooleanFunction function)doubleGammaTxnDouble. alterAndGet(Txn tx, DoubleFunction function)intGammaTxnInteger. alterAndGet(Txn tx, IntFunction function)longGammaTxnLong. alterAndGet(Txn tx, LongFunction function)EGammaTxnRef. alterAndGet(Txn tx, Function<E> function)voidGammaTxnBoolean. await(Txn tx, boolean value)voidGammaTxnBoolean. await(Txn tx, BooleanPredicate predicate)voidGammaTxnDouble. await(Txn tx, double value)voidGammaTxnDouble. await(Txn tx, DoublePredicate predicate)voidGammaTxnInteger. await(Txn tx, int value)voidGammaTxnInteger. await(Txn tx, IntPredicate predicate)voidGammaTxnLong. await(Txn tx, long value)voidGammaTxnLong. await(Txn tx, LongPredicate predicate)voidGammaTxnRef. await(Txn tx, E value)voidGammaTxnRef. await(Txn tx, Predicate<E> predicate)EGammaTxnRef. awaitNotNullAndGet(Txn tx)voidGammaTxnRef. awaitNull(Txn tx)voidGammaTxnBoolean. commute(Txn tx, BooleanFunction function)voidGammaTxnDouble. commute(Txn tx, DoubleFunction function)voidGammaTxnInteger. commute(Txn tx, IntFunction function)voidGammaTxnLong. commute(Txn tx, LongFunction function)voidGammaTxnRef. commute(Txn tx, Function<E> function)voidGammaTxnInteger. decrement(Txn tx)voidGammaTxnInteger. decrement(Txn tx, int amount)voidGammaTxnLong. decrement(Txn tx)voidGammaTxnLong. decrement(Txn tx, long amount)voidBaseGammaTxnRef. ensure(Txn self)booleanGammaTxnBoolean. get(Txn tx)doubleGammaTxnDouble. get(Txn tx)intGammaTxnInteger. get(Txn tx)longGammaTxnLong. get(Txn tx)EGammaTxnRef. get(Txn tx)booleanGammaTxnBoolean. getAndAlter(Txn tx, BooleanFunction function)doubleGammaTxnDouble. getAndAlter(Txn tx, DoubleFunction function)intGammaTxnInteger. getAndAlter(Txn tx, IntFunction function)longGammaTxnLong. getAndAlter(Txn tx, LongFunction function)EGammaTxnRef. getAndAlter(Txn tx, Function<E> function)doubleGammaTxnDouble. getAndIncrement(Txn tx, double amount)intGammaTxnInteger. getAndIncrement(Txn tx, int amount)longGammaTxnLong. getAndIncrement(Txn tx, long amount)booleanGammaTxnBoolean. getAndLock(Txn tx, LockMode lockMode)doubleGammaTxnDouble. getAndLock(Txn tx, LockMode lockMode)intGammaTxnInteger. getAndLock(Txn tx, LockMode lockMode)longGammaTxnLong. getAndLock(Txn tx, LockMode lockMode)EGammaTxnRef. getAndLock(Txn tx, LockMode lockMode)booleanGammaTxnBoolean. getAndSet(Txn tx, boolean value)doubleGammaTxnDouble. getAndSet(Txn tx, double value)intGammaTxnInteger. getAndSet(Txn tx, int value)longGammaTxnLong. getAndSet(Txn tx, long value)EGammaTxnRef. getAndSet(Txn tx, E value)booleanGammaTxnBoolean. getAndSetAndLock(Txn tx, boolean value, LockMode lockMode)doubleGammaTxnDouble. getAndSetAndLock(Txn tx, double value, LockMode lockMode)intGammaTxnInteger. getAndSetAndLock(Txn tx, int value, LockMode lockMode)longGammaTxnLong. getAndSetAndLock(Txn tx, long value, LockMode lockMode)EGammaTxnRef. getAndSetAndLock(Txn tx, E value, LockMode lockMode)LockModeAbstractGammaObject. getLockMode(Txn tx)voidGammaTxnInteger. increment(Txn tx)voidGammaTxnInteger. increment(Txn tx, int amount)voidGammaTxnLong. increment(Txn tx)voidGammaTxnLong. increment(Txn tx, long amount)doubleGammaTxnDouble. incrementAndGet(Txn tx, double amount)intGammaTxnInteger. incrementAndGet(Txn tx, int amount)longGammaTxnLong. incrementAndGet(Txn tx, long amount)booleanGammaTxnRef. isNull(Txn tx)booleanGammaTxnBoolean. set(Txn tx, boolean value)doubleGammaTxnDouble. set(Txn tx, double value)intGammaTxnInteger. set(Txn tx, int value)longGammaTxnLong. set(Txn tx, long value)EGammaTxnRef. set(Txn tx, E value)booleanGammaTxnBoolean. setAndLock(Txn tx, boolean value, LockMode lockMode)doubleGammaTxnDouble. setAndLock(Txn tx, double value, LockMode lockMode)intGammaTxnInteger. setAndLock(Txn tx, int value, LockMode lockMode)longGammaTxnLong. setAndLock(Txn tx, long value, LockMode lockMode)EGammaTxnRef. setAndLock(Txn tx, E value, LockMode lockMode)java.lang.StringGammaTxnBoolean. toString(Txn tx)java.lang.StringGammaTxnDouble. toString(Txn tx)java.lang.StringGammaTxnInteger. toString(Txn tx)java.lang.StringGammaTxnLong. toString(Txn tx)java.lang.StringGammaTxnRef. toString(Txn tx) -
Uses of Txn in org.multiverse.stms.gamma.transactions
Classes in org.multiverse.stms.gamma.transactions that implement Txn Modifier and Type Class Description classGammaTxnAbstract GammaTxn to be used by all the concrete GammaTxn implementations. -
Uses of Txn in org.multiverse.stms.gamma.transactions.fat
Classes in org.multiverse.stms.gamma.transactions.fat that implement Txn Modifier and Type Class Description classFatFixedLengthGammaTxnA FatGammaTxn(supporting all features) but has a fixed capacity.classFatMonoGammaTxnclassFatVariableLengthGammaTxn -
Uses of Txn in org.multiverse.stms.gamma.transactions.lean
Classes in org.multiverse.stms.gamma.transactions.lean that implement Txn Modifier and Type Class Description classLeanFixedLengthGammaTxnA Lean GammaTxn that is optimized for a fixed number of GammaTxnRefs.classLeanMonoGammaTxnA Lean GammaTxn implementation that is optimized for dealing with only a single transactional reference.
-