MCPcopy Create free account
hub / github.com/e2wugui/zeze / verifyLocal

Method verifyLocal

ZezeJava/ZezeJava/src/main/java/Zeze/Arch/Online.java:1555–1568  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 5

addMethod · 0.95
tryPerformMethod · 0.95
performMethod · 0.95
startLocalCheckMethod · 0.95
walkMemoryMethod · 0.65

Tested by

no test coverage detected