The Multiverse Code (so API and implementation)

The Multiverse core

GroupId

GroupId

org.multiverse
ArtifactId

ArtifactId

multiverse-core
Last Version

Last Version

0.7.0
Release Date

Release Date

Type

Type

jar
Description

Description

The Multiverse Code (so API and implementation)
The Multiverse core

Download multiverse-core

How to add to project

<!-- https://jarcasting.com/artifacts/org.multiverse/multiverse-core/ -->
<dependency>
    <groupId>org.multiverse</groupId>
    <artifactId>multiverse-core</artifactId>
    <version>0.7.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.multiverse/multiverse-core/
implementation 'org.multiverse:multiverse-core:0.7.0'
// https://jarcasting.com/artifacts/org.multiverse/multiverse-core/
implementation ("org.multiverse:multiverse-core:0.7.0")
'org.multiverse:multiverse-core:jar:0.7.0'
<dependency org="org.multiverse" name="multiverse-core" rev="0.7.0">
  <artifact name="multiverse-core" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.multiverse', module='multiverse-core', version='0.7.0')
)
libraryDependencies += "org.multiverse" % "multiverse-core" % "0.7.0"
[org.multiverse/multiverse-core "0.7.0"]

Dependencies

test (2)

Group / Artifact Type Version
junit : junit jar 4.10
org.mockito : mockito-all jar 1.9.0

Project Modules

There are no modules declared in this project.

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.

Versions

Version
0.7.0
0.6.2
0.6.1
0.6
0.5.2
0.5
0.4.1-SNAPSHOPT
0.4
0.3