跳过导航链接
C D E F G I T U V 

C

checkout(boolean, String, String) - 类 中的静态方法com.github.dapeng.transaction.service.GlobalTransactionServiceImpl
 
com.github.dapeng.transaction - 程序包 com.github.dapeng.transaction
 
com.github.dapeng.transaction.dao - 程序包 com.github.dapeng.transaction.dao
 
com.github.dapeng.transaction.service - 程序包 com.github.dapeng.transaction.service
 
com.github.dapeng.transaction.utils - 程序包 com.github.dapeng.transaction.utils
 
create(TGlobalTransactionProcess) - 类 中的方法com.github.dapeng.transaction.service.GlobalTransactionProcessServiceImpl
 
create(TGlobalTransaction) - 类 中的方法com.github.dapeng.transaction.service.GlobalTransactionServiceImpl
 

D

doJob() - 类 中的方法com.github.dapeng.transaction.GlobalTransactionManager
 

E

ErrorCode - com.github.dapeng.transaction.utils中的枚举
Created by tangliu on 2016/4/12.

F

findFailedGlobals() - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
查询所有失败,或者部分回滚的全局事务记录
findFailedGlobals() - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
查询所有失败,或者部分回滚的全局事务记录
findFailedProcess(Integer) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
查找所有的失败的或者未知的事务过程记录
findFailedProcess(Integer) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
查找所有的失败的或者未知的事务过程记录 升序
findSucceedProcess(Integer) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
查找所有的成功的或者未知的事务过程记录
findSucceedProcess(Integer) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
查找所有的成功的或者未知的事务过程记录
findSuccessWithFailedProcessGlobals() - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
查找所有状态为成功,但子过程中有失败的全局事务记录
findSuccessWithFailedProcessGlobals() - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
查找所有状态为成功,但子过程中有失败的全局事务记录

G

getCode() - 枚举 中的方法com.github.dapeng.transaction.utils.ErrorCode
 
getGlobalByIdForUpdate(Integer) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
 
getGlobalByIdForUpdate(Integer) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
 
getMsg() - 枚举 中的方法com.github.dapeng.transaction.utils.ErrorCode
 
getProcessByIdForUpdate(Integer) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
 
getProcessByIdForUpdate(Integer) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
 
GlobalTransactionManager - com.github.dapeng.transaction中的类
Global Transaction Manager
GlobalTransactionManager() - 类 的构造器com.github.dapeng.transaction.GlobalTransactionManager
 
GlobalTransactionProcessServiceImpl - com.github.dapeng.transaction.service中的类
Created by tangliu on 2016/4/12.
GlobalTransactionProcessServiceImpl() - 类 的构造器com.github.dapeng.transaction.service.GlobalTransactionProcessServiceImpl
 
GlobalTransactionServiceImpl - com.github.dapeng.transaction.service中的类
Created by tangliu on 2016/4/12.
GlobalTransactionServiceImpl() - 类 的构造器com.github.dapeng.transaction.service.GlobalTransactionServiceImpl
 

I

insert(TGlobalTransaction) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
插入全局事务记录
insert(TGlobalTransactionProcess) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
插入事务过程记录
insert(TGlobalTransaction) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
插入记录,返回id
insert(TGlobalTransactionProcess) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
插入子事务过程记录,返回id
ITransactionDao - com.github.dapeng.transaction.dao中的接口
Created by tangliu on 17/7/28.

T

TransactionDaoImpl - com.github.dapeng.transaction.dao中的类
Created by tangliu on 17/7/28.
TransactionDaoImpl() - 类 的构造器com.github.dapeng.transaction.dao.TransactionDaoImpl
 

U

update(Integer, String, TGlobalTransactionProcessStatus) - 类 中的方法com.github.dapeng.transaction.service.GlobalTransactionProcessServiceImpl
 
update(Integer, Integer, TGlobalTransactionsStatus) - 类 中的方法com.github.dapeng.transaction.service.GlobalTransactionServiceImpl
 
updateExpectedStatus(Integer, TGlobalTransactionProcessExpectedStatus) - 类 中的方法com.github.dapeng.transaction.service.GlobalTransactionProcessServiceImpl
更新事务过程期望状态
updateGlobalTransactionStatusAndCurrSeq(Integer, Integer, Integer) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
更新全局事务记录的状态和当前子事务序号
updateGlobalTransactionStatusAndCurrSeq(Integer, Integer, Integer) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
update global_transactions set status = ${status.getValue}, curr_sequence = ${currSequence}, updated_at = ${updatedAt} where id = ${transactionId}
updateProcess(Integer, Integer, String) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
更新事务过程的状态和返回结果
updateProcess(Integer, Integer, String) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
update global_transaction_process set status = ${status.getValue}, response_json = ${responseJson}, updated_at = ${updatedAt} where id = ${processId}
updateProcessExpectedStatus(Integer, Integer) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
更新事务过程的期望状态
updateProcessExpectedStatus(Integer, Integer) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
更新事务过程的期望状态
updateProcessRollbackTime(Integer, Integer, Date) - 接口 中的方法com.github.dapeng.transaction.dao.ITransactionDao
更新重试次数和下次重试时间
updateProcessRollbackTime(Integer, Integer, Date) - 类 中的方法com.github.dapeng.transaction.dao.TransactionDaoImpl
 
updateRedoTimes(Integer) - 类 中的方法com.github.dapeng.transaction.service.GlobalTransactionProcessServiceImpl
更新事务过程的重试次数和下次重试时间

V

valueOf(String) - 枚举 中的静态方法com.github.dapeng.transaction.utils.ErrorCode
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法com.github.dapeng.transaction.utils.ErrorCode
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
C D E F G I T U V 
跳过导航链接

Copyright © 2020. All rights reserved.