
com.bigdata.btree.isolation.NoConflictResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bigdata-core Show documentation
Show all versions of bigdata-core Show documentation
Blazegraph(TM) DB Core Platform. It contains all Blazegraph DB dependencies other than Blueprints.
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