Compare commits
1 Commits
c2c8c6b554
...
eda50d290a
Author | SHA1 | Date | |
---|---|---|---|
|
eda50d290a |
@ -11,9 +11,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
### Added
|
### Added
|
||||||
- update basic example with a more simple acquire and run function
|
- update basic example with a more simple acquire and run function
|
||||||
|
|
||||||
### Docs
|
|
||||||
- update master
|
|
||||||
|
|
||||||
## [0.1.1] - 2025-07-04
|
## [0.1.1] - 2025-07-04
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
35
README.md
35
README.md
@ -71,28 +71,31 @@ async fn main() -> anyhow::Result<()> {
|
|||||||
// Ensure the KV bucket exists
|
// Ensure the KV bucket exists
|
||||||
leader.create_bucket().await?;
|
leader.create_bucket().await?;
|
||||||
|
|
||||||
// Attempts to acquire election loop, will call inner function if it wins, if it loses it will retry over again.
|
// Spawn the election loop
|
||||||
// Will block until either the inner function returns and error, or the election processes crashes, intended to allow the application to properly restart
|
tokio::spawn({
|
||||||
|
let leader = leader.clone();
|
||||||
|
async move {
|
||||||
|
leader
|
||||||
|
.start(CancellationToken::default())
|
||||||
|
.await
|
||||||
|
.expect("leadership loop failed");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Do work while we are the leader
|
||||||
leader
|
leader
|
||||||
.acquire_and_run({
|
.do_while_leader(|cancel_token| async move {
|
||||||
move |token| {
|
loop {
|
||||||
let leader_id = leader_id.clone();
|
if cancel_token.is_cancelled() {
|
||||||
|
break;
|
||||||
async move {
|
|
||||||
loop {
|
|
||||||
if token.is_cancelled() {
|
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
|
|
||||||
tracing::info!(leader_id, "do work as leader");
|
|
||||||
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
tracing::info!("🔑 I am the leader—doing work");
|
||||||
|
tokio::time::sleep(std::time::Duration::from_secs(1)).await;
|
||||||
}
|
}
|
||||||
|
Ok(())
|
||||||
})
|
})
|
||||||
.await?;
|
.await?;
|
||||||
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user