All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.btree.isolation.NoConflictResolver Maven / Gradle / Ivy

Go to download

Blazegraph(TM) DB Core Platform. It contains all Blazegraph DB dependencies other than Blueprints.

There is a newer version: 2.1.4
Show newest version
package com.bigdata.btree.isolation;

import com.bigdata.btree.IIndex;
import com.bigdata.btree.ITuple;

/**
 * Does not resolve any conflicts.
 * 
 * @author Bryan Thompson
 * @version $Id$
 */
final public class NoConflictResolver implements IConflictResolver {

    /**
     * 
     */
    private static final long serialVersionUID = 4873027180161852127L;

    public boolean resolveConflict(IIndex writeSet, ITuple txTuple,
            ITuple currentTuple) throws Exception {

        return false;

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy