multi: add reset to ForEachNode

This commit is contained in:
Elle Mouton
2025-07-11 10:55:20 +02:00
parent c32bf642d2
commit 21ac7ef6f4
9 changed files with 17 additions and 13 deletions

View File

@@ -229,7 +229,7 @@ type GraphSource interface {
// the callback returns an error, then the transaction is aborted and
// the iteration stops early. Any operations performed on the NodeTx
// passed to the call-back are executed under the same read transaction.
ForEachNode(context.Context, func(graphdb.NodeRTx) error) error
ForEachNode(context.Context, func(graphdb.NodeRTx) error, func()) error
// ForEachNodeCached is similar to ForEachNode, but it utilizes the
// channel graph cache if one is available. It is less consistent than