use std::sync::Arc; use std::time::Duration; use async_trait::async_trait; use serde::{Deserialize, Serialize}; #[cfg(test)] pub use task_store::test::MockTaskStore as TaskStore; #[cfg(not(test))] pub use task_store::TaskStore; pub use task_store::{Pending, TaskFilter}; use batch::Batch; use error::Result; use scheduler::Scheduler; pub mod batch; pub mod error; pub mod scheduler; pub mod task; mod task_store; #[cfg_attr(test, mockall::automock(type Error=test::DebugError;))] #[async_trait] pub trait TaskPerformer: Sync + Send + 'static { type Error: Serialize + for<'de> Deserialize<'de> + std::error::Error + Sync + Send + 'static; /// Processes the `Task` batch returning the batch with the `Task` updated. async fn process(&self, batch: Batch) -> Batch; /// `finish` is called when the result of `process` has been commited to the task store. This /// method can be used to perform cleanup after the update has been completed for example. async fn finish(&self, batch: &Batch); } pub fn create_task_store
(env: heed::Env, performer: Arc
) -> Result