timoninmaxim commented on code in PR #11866: URL: https://github.com/apache/ignite/pull/11866#discussion_r1961279134
########## modules/core/src/main/java/org/apache/ignite/internal/management/cache/IdleVerifyResult.java: ########## @@ -414,4 +369,183 @@ private void printConflicts(Consumer<String> printer) { @Override public String toString() { return S.toString(IdleVerifyResult.class, this); } + + /** @return A fresh result builder. */ + public static Builder builder() { + return new Builder(); + } + + /** Builder of {@link IdleVerifyResult}. Is not thread-safe. */ + public static final class Builder { + /** */ + private @Nullable Map<PartitionKey, List<PartitionHashRecord>> partHashes; + + /** */ + private @Nullable List<List<TransactionsHashRecord>> txHashConflicts; + + /** */ + private @Nullable Map<ClusterNode, Collection<GridCacheVersion>> partCommitTxs; Review Comment: partiallyCommittedTxs, "part" means "partition" in "partHashes" (nearby field). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org