tikv / raft-rs

Raft distributed consensus algorithm implemented in Rust.
Apache License 2.0
2.93k stars 394 forks source link

How to watch the follower become leader? #487

Closed pidb closed 2 years ago

pidb commented 2 years ago

I want to notify the upper users when the follower becomes the leader. How do I do this?

BusyJay commented 2 years ago

If the role is changed, then ready.ss() should be Some.

pidb commented 2 years ago

I see. Thank you very much 🫡

If the role is changed, then ready.ss() should be Some.