This commit is contained in:
Kamron Batman 2026-07-25 10:45:47 -07:00
parent f3b7c7451c
commit fc15a61542
No known key found for this signature in database
GPG key ID: 7D81DF26D9A5D94A
10 changed files with 18 additions and 45 deletions

View file

@ -55,7 +55,7 @@ public static class ConnectionFilters
}
}
filter.Configure();
filter.Register();
var updated = new IConnectionFilter[_filters.Length + 1];
Array.Copy(_filters, updated, _filters.Length);

View file

@ -44,7 +44,7 @@ public interface IConnectionFilter
string Name { get; }
/// <summary>Reads configuration. Called by <see cref="ConnectionFilters.Register"/>. No I/O beyond config.</summary>
void Configure();
void Register();
/// <summary>Starts any background hydration. The token is cancelled on shutdown.</summary>
void Start(CancellationToken token);