Struct tetsy_updater::Updater[][src]

pub struct Updater<O = OperationsContractClient, F = Client, T = StdTimeProvider, R = ThreadRngGenRange> { /* fields omitted */ }

Service for checking for updates and determining whether we can achieve consensus.

Implementations

impl Updater[src]

pub fn new(
    client: &Weak<dyn BlockChainClient>,
    sync: &Weak<dyn SyncProvider>,
    update_policy: UpdatePolicy,
    fetcher: Client
) -> Arc<Updater>
[src]

Updater constructor

impl<O: OperationsClient, F: HashFetch, T: TimeProvider, R: GenRange> Updater<O, F, T, R>[src]

pub fn set_exit_handler<G>(&self, g: G) where
    G: Fn() + 'static + Send
[src]

Set a closure to call when we want to restart the client

Trait Implementations

impl ChainNotify for Updater[src]

impl<O: OperationsClient, F: HashFetch, T: TimeProvider, R: GenRange> Service for Updater<O, F, T, R>[src]

Auto Trait Implementations

impl<O = OperationsContractClient, F = Client<Client>, T = StdTimeProvider, R = ThreadRngGenRange> !RefUnwindSafe for Updater<O, F, T, R>

impl<O, F, T, R> Send for Updater<O, F, T, R> where
    F: Send + Sync,
    O: Send + Sync,
    R: Send + Sync,
    T: Send + Sync

impl<O, F, T, R> Sync for Updater<O, F, T, R> where
    F: Send + Sync,
    O: Send + Sync,
    R: Send + Sync,
    T: Send + Sync

impl<O, F, T, R> Unpin for Updater<O, F, T, R> where
    F: Unpin,
    O: Unpin,
    R: Unpin,
    T: Unpin

impl<O = OperationsContractClient, F = Client<Client>, T = StdTimeProvider, R = ThreadRngGenRange> !UnwindSafe for Updater<O, F, T, R>

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> Erased for T

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,