aboutsummaryrefslogtreecommitdiff
path: root/vendor/indicatif/examples/tokio.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/indicatif/examples/tokio.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/indicatif/examples/tokio.rs')
-rw-r--r--vendor/indicatif/examples/tokio.rs34
1 files changed, 0 insertions, 34 deletions
diff --git a/vendor/indicatif/examples/tokio.rs b/vendor/indicatif/examples/tokio.rs
deleted file mode 100644
index 17ac2b1..0000000
--- a/vendor/indicatif/examples/tokio.rs
+++ /dev/null
@@ -1,34 +0,0 @@
-use std::time::Duration;
-
-use indicatif::ProgressBar;
-use tokio::runtime;
-use tokio::time::interval;
-
-fn main() {
- // Plain progress bar, totaling 1024 steps.
- let steps = 1024;
- let pb = ProgressBar::new(steps);
-
- // Stream of events, triggering every 5ms.
- let rt = runtime::Builder::new_current_thread()
- .enable_time()
- .build()
- .expect("failed to create runtime");
-
- // Future computation which runs for `steps` interval events,
- // incrementing one step of the progress bar each time.
- let future = async {
- let mut intv = interval(Duration::from_millis(5));
-
- for _ in 0..steps {
- intv.tick().await;
- pb.inc(1);
- }
- };
-
- // Drive the future to completion, blocking until done.
- rt.block_on(future);
-
- // Mark the progress bar as finished.
- pb.finish();
-}