[][src]Struct frugalos_raft::Timer

pub struct Timer { /* fields omitted */ }

Raft用のタイマー実装.

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

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

Implementations

impl Timer[src]

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

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

Trait Implementations

impl Clone for Timer[src]

impl Debug for Timer[src]

Auto Trait Implementations

impl RefUnwindSafe for Timer

impl Send for Timer

impl Sync for Timer

impl Unpin for Timer

impl UnwindSafe for Timer

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.