Limited update loop speed using sleep()
This commit is contained in:
parent
a91ff86876
commit
3fe873c00c
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -959,7 +959,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "pomd"
|
||||
version = "1.2.0"
|
||||
version = "1.3.0"
|
||||
dependencies = [
|
||||
"async-std",
|
||||
"confy",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pomd"
|
||||
version = "1.2.0"
|
||||
version = "1.3.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
@ -1,6 +1,6 @@
|
||||
use std::{
|
||||
sync::{Arc, Mutex},
|
||||
time::Duration,
|
||||
time::Duration, thread::sleep,
|
||||
};
|
||||
|
||||
use pausable_clock::{PausableClock, PausableInstant};
|
||||
@ -164,5 +164,6 @@ async fn main() -> Result<()> {
|
||||
.await?;
|
||||
loop {
|
||||
pomd.lock().unwrap().update();
|
||||
sleep(Duration::from_millis(100));
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user