• Stars
    star
    233
  • Rank 172,190 (Top 4 %)
  • Language
    Java
  • License
    Other
  • Created almost 13 years ago
  • Updated about 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Software Transactional Memory Implementation for the JVM

Multiverse Software Transactional Memory

A software transactional memory implementation for the JVM. Access (read and writes) to shared memory is done through transactional references, that can be compared to the AtomicReferences of Java. Access to these references will be done under A (atomicity), C (consistency), I (isolation) semantics. For more information see multiverse.codehaus.org

Example

import org.multiverse.api.references.*;
import static org.multiverse.api.StmUtils.*;

public class Account{
    private final TxnRef<Date> lastModified = new TxnRef();
    private final TxnLong amount = new TxnLong();

    public Account(long amount){
       this.amount.set(amount);
       this.lastModified.set(new Date());
    }

    public Date getLastModifiedDate(){
        return lastModified.get();
    }

    public long getAmount(){
        return amount.get();
    }

    public static void transfer(final Account from, final Account to, final long amount){
        atomic(new Runnable()){
            public void run(){
                Date date = new Date();

                from.lastModified.set(date);
                from.amount.dec(amount);

                to.lastModified.set(date);
                to.amount.inc(amount);
            }
        }
    }
}

# And it can be called like this:

Account account1 = new Account(10);
Account account2 = new Account(20)
Account.transfer(account1, account2, 5);

No instrumentation.

Multiverse doesn't rely on instrumentation, so is easy to integrate in existing projects.