adirector
asynchronous tokio task spawner with a limited size.
Full example:
use ;
async
Implementation
A Semaphore is used to limit the count of tasks, and a JoinSet to join all tasks at once.
Dependencies
- tokio with
rtsyncfeatures
asynchronous tokio task spawner with a limited size.
Full example:
use adirector::{Director, DirectorError};
#[tokio: main]
async fn main() -> Result<(), DirectorError> {
// create executor that allow 10 tasks concurrently.
let mut director = Director::new(10);
// read line by line stdin
let mut lines = BufReader::new(stdin()).lines();
while let Some(line) = lines.next_line().await.unwrap() {
director.spawn(async move {
println!("{}", line);
sleep(Duration::from_millis(50)).await;
}).await?; // Suspends until the task is spawned
}
// Wait for remaining tasks to complete
director.join_all().await
}
A Semaphore is used to limit the count of tasks, and a JoinSet to join all tasks at once.
rt sync features