public void run() {
Trans.exec(new Atom(){
a();//方法a
b();//方法b
);
}
是不是一个线程执行这个事务里面方法的时候,别的线程会阻塞?
3 回复
添加回复
请先登陆
public void run() {
Trans.exec(new Atom(){
a();//方法a
b();//方法b
);
}
是不是一个线程执行这个事务里面方法的时候,别的线程会阻塞?