本文整理汇总了Java中com.taobao.tddl.executor.spi.ITHLog类的典型用法代码示例。如果您正苦于以下问题:Java ITHLog类的具体用法?Java ITHLog怎么用?Java ITHLog使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ITHLog类属于com.taobao.tddl.executor.spi包,在下文中一共展示了ITHLog类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: commit
import com.taobao.tddl.executor.spi.ITHLog; //导入依赖的package包/类
@Override
public void commit() throws TddlException {
try {
closeCursor();
txn.commit();
try {
ITHLog ithLog = historyLog.get();
if (ithLog != null) {
ithLog.commit(this);
}
} catch (Exception e) {
throw new RuntimeException(e);
}
} catch (ReplicaWriteException replicaWrite) {
try {
rollback();
} catch (Exception throwable) {
throw new TddlNestableRuntimeException(throwable);
}
}
}
示例2: rollback
import com.taobao.tddl.executor.spi.ITHLog; //导入依赖的package包/类
@Override
public void rollback() throws TddlException {
if (txn != null) {
closeCursor();
txn.abort();
txn = null;
try {
ITHLog ithLog = historyLog.get();
if (ithLog != null) {
ithLog.rollback(this);
}
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}
示例3: commit
import com.taobao.tddl.executor.spi.ITHLog; //导入依赖的package包/类
@Override
public void commit() throws TddlException {
try {
closeCursor();
txn.commit();
try {
ITHLog ithLog = historyLog.get();
if (ithLog != null) {
ithLog.commit(this);
}
} catch (Exception e) {
throw new RuntimeException(e);
}
} catch (ReplicaWriteException replicaWrite) {
try {
rollback();
} catch (Exception throwable) {
throw new TddlException(ExceptionErrorCodeUtils.Read_only, throwable);
}
throw new TddlException(ExceptionErrorCodeUtils.Read_only, replicaWrite);
}
}
示例4: prepare
import com.taobao.tddl.executor.spi.ITHLog; //导入依赖的package包/类
protected void prepare(ITransaction transaction, ITable table, IRowSet oldkv, CloneableRecord key,
CloneableRecord value, IPut.PUT_TYPE putType) throws TddlException {
ITHLog historyLog = transaction.getHistoryLog();
if (historyLog != null) {
historyLog.parepare(transaction.getId(), table.getSchema(), putType, oldkv, new KVPair(key, value));
}
}
示例5: JE_Transaction
import com.taobao.tddl.executor.spi.ITHLog; //导入依赖的package包/类
public JE_Transaction(com.sleepycat.je.Transaction txn, com.sleepycat.je.TransactionConfig config,
AtomicReference<ITHLog> historyLog){
this.txn = txn;
this.config = config;
this.historyLog = historyLog;
}
示例6: getHistoryLog
import com.taobao.tddl.executor.spi.ITHLog; //导入依赖的package包/类
public ITHLog getHistoryLog() {
return null;
}
示例7: getHistoryLog
import com.taobao.tddl.executor.spi.ITHLog; //导入依赖的package包/类
public ITHLog getHistoryLog() {
return historyLog.get();
}