docs: add readme
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-07-22 22:05:51 +02:00
parent 0f50b3d5bf
commit a27d278014
2 changed files with 112 additions and 1 deletions

View File

@@ -107,13 +107,17 @@ impl DropQueue {
loop {
tokio::select! {
_ = cancellation_token.cancelled() => {
return Ok(())
break;
},
res = self.process_next() => {
res?;
}
}
}
self.drain().await?;
Ok(())
}
}