Package com.arjuna.ats.arjuna.coordinator

Examples of com.arjuna.ats.arjuna.coordinator.SynchronizationRecord


    private TransactionImple _tx;
    private Uid              _theUid = new Uid();

    public int compareTo(Object o) {
        SynchronizationRecord sr = (SynchronizationRecord)o;
        if(_theUid.equals(sr.get_uid())) {
            return 0;
        } else {
            return _theUid.lessThan(sr.get_uid()) ? -1 : 1;
        }
    }
View Full Code Here

TOP

Related Classes of com.arjuna.ats.arjuna.coordinator.SynchronizationRecord

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.