使用nick和订单id来进行锁定,
如果锁定失败,那么等待.
Queue<Future<Boolean>> queue = new LinkedList<Future<Boolean>>();
final ConcurrentMap<String, String> buyerLock = new ConcurrentHashMap<String, String>();
for (final Trade tbTrade : tbTradeList) {
queue.offer(topExecutePool.submit(new Callable<Boolean>() {
public Boolean call() throws Exception {
try {
for(int j=0;j<10;j++){
String existBuyerNickTid = buyerLock.putIfAbsent(tbTrade.getBuyerNick(),""+tbTrade.getTid());
if(existBuyerNickTid==null){
break;
}
Thread.sleep(5*1000L);
continue;
}
..............................................
} catch (Exception e) {
logger.error(e);
}finally{
buyerLock.remove(tbTrade.getBuyerNick());
}
return Boolean.TRUE;
}
}));
}
本文介绍了一种使用nick和订单id进行并发锁定的方法,并在等待锁定失败时进行重试,同时详细解释了如何在锁定成功后进行后续处理。
10万+

被折叠的 条评论
为什么被折叠?



