[router] introduce dp worker abstraction (#8639)

This commit is contained in:
Simo Lin
2025-08-04 06:42:20 -07:00
committed by GitHub
parent 915140fd18
commit 2fa0462c39
2 changed files with 567 additions and 11 deletions

View File

@@ -11,6 +11,6 @@ pub mod worker;
// Re-export commonly used types at the module level
pub use error::{WorkerError, WorkerResult};
pub use worker::{
start_health_checker, BasicWorker, HealthChecker, Worker, WorkerCollection, WorkerFactory,
WorkerLoadGuard, WorkerType,
start_health_checker, BasicWorker, DPAwareWorker, HealthChecker, Worker, WorkerCollection,
WorkerFactory, WorkerLoadGuard, WorkerType,
};