pub trait AsyncTaskFactory: Send + Sync { // Required method fn create(&self, params: TaskParams) -> Box<dyn AsyncTask>; }
Task 生成のファクトリ(ユーザー拡張用)