Skip to main content

aster/background/
mod.rs

1//! 后台任务模块
2//!
3//! 提供任务队列、Shell 管理、超时处理和状态持久化功能
4//!
5//! # 模块结构
6//! - `types` - 共享类型定义
7//! - `task_queue` - 简单任务队列实现
8//! - `shell_manager` - 后台 Shell 管理器
9//! - `timeout` - 超时处理
10//! - `persistence` - 状态持久化
11
12pub mod persistence;
13pub mod shell_manager;
14pub mod task_queue;
15pub mod timeout;
16pub mod types;
17
18// Re-exports
19pub use persistence::*;
20pub use shell_manager::*;
21pub use task_queue::*;
22pub use timeout::*;
23pub use types::*;