()
| 1553 | } |
| 1554 | |
| 1555 | private void verifyLocal() throws Exception { |
| 1556 | try { |
| 1557 | var batch = new VerifyBatch(); |
| 1558 | // 锁外执行事务 |
| 1559 | _tlocal.walkMemory((k, v) -> { |
| 1560 | batch.add(k); |
| 1561 | batch.tryPerform(); |
| 1562 | return true; |
| 1563 | }); |
| 1564 | batch.perform(); |
| 1565 | } finally { |
| 1566 | startLocalCheck(); |
| 1567 | } |
| 1568 | } |
| 1569 | |
| 1570 | private long tryRemoveLocal(@NotNull String account) throws Exception { |
| 1571 | var local = _tlocal.get(account); |
nothing calls this directly
no test coverage detected