pub trait FilesystemQueueManagerExt {
    fn init(config: Arc<Config>) -> Result<Arc<Self>>
    where
        Self: Sized
; fn get_config(&self) -> &Config; fn get_root_folder(config: &Config, queue: &QueueID) -> PathBuf { ... } fn get_queue_path(&self, queue: &QueueID) -> PathBuf { ... } }
Expand description

Extension to the GenericQueueManager to simplify filesystem implementation.

Required Methods§

Provided Methods§

Implementors§