refactor: isolate dispatch scheduling core

This commit is contained in:
fawney19
2026-05-12 13:15:41 +08:00
parent 81ee27cdea
commit fa73655134
50 changed files with 4467 additions and 3202 deletions

View File

@@ -28,4 +28,8 @@ impl AuthContextCache {
self.entries
.insert(cache_key, auth_context, ttl, max_entries);
}
pub(crate) fn clear(&self) {
self.entries.clear();
}
}