docs(xml): fill missing XML doc comments + strip task-tracking refs across src (fixdocs)
Add missing <summary>/<param>/<returns>/<typeparam> tags and switch interface implementations to <inheritdoc/> across 106 files; strip project bookkeeping identifiers (Task NN, #05-TNN, PLAN-04, StoreAndForward-0NN) from shipped code comments while preserving the descriptive rationale. Comment-only: zero code-logic lines changed; solution builds 0/0. Claude-Session: https://claude.ai/code/session_01MtdgwpEeCUn6cUA5f1LMPj
This commit is contained in:
@@ -230,9 +230,17 @@ public sealed class SiteReconciliationActor : ReceiveActor, IWithTimers
|
||||
/// <summary>Summary of one reconcile pass, piped to <c>Self</c> for logging.</summary>
|
||||
private sealed record ReconcilePassResult(int Fetched, int Failed, int Orphans, Exception? Error)
|
||||
{
|
||||
/// <summary>Creates a result for a reconcile pass that ran to completion.</summary>
|
||||
/// <param name="fetched">Number of instances successfully fetched/reconciled.</param>
|
||||
/// <param name="failed">Number of instances that failed to reconcile.</param>
|
||||
/// <param name="orphans">Number of local instances no longer deployed at central.</param>
|
||||
/// <returns>A completed <see cref="ReconcilePassResult"/> with no error.</returns>
|
||||
public static ReconcilePassResult Completed(int fetched, int failed, int orphans)
|
||||
=> new(fetched, failed, orphans, null);
|
||||
|
||||
/// <summary>Creates a result for a reconcile pass that failed before completing.</summary>
|
||||
/// <param name="error">The exception that caused the pass to fail.</param>
|
||||
/// <returns>A faulted <see cref="ReconcilePassResult"/> carrying the error.</returns>
|
||||
public static ReconcilePassResult Faulted(Exception error)
|
||||
=> new(0, 0, 0, error);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user