[][src]Struct frugalos_raft::Timer

pub struct Timer { /* fields omitted */ }

Raft用のタイマー実装.

このタイマーは、パラメータとして「最小タイムアウト時間」と「最大タイムアウト時間」を受け取り、 以下のルールに従って、各ロール用のタイムアウト時間を決定する.

  • Role::Follower: 常に最大タイムアウト時間
  • Role::Leader: 常に最小タイムアウト時間
  • Role::Candidate: 最小と最大の間のいずれかの値を無作為に選択

Methods

impl Timer[src]

pub fn new(min_timeout: Duration, max_timeout: Duration) -> Self[src]

新しいTimerインスタンスを生成する.

Trait Implementations

impl Clone for Timer[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Timer[src]

Auto Trait Implementations

impl Send for Timer

impl Sync for Timer

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]