Trait paxakos::node::Admin[][src]

pub trait Admin {
    fn force_active(&self) -> BoxFuture<'static, Result<bool, ShutDown>>;
}
Expand description

Exposes seldomly used administrative operations.

Required methods

Forces node out of passive participation.

Soundness

Forcing a node out of passive mode may cause it to back out of obligations it took on previously. The only exception are nodes which are (re-)joining a cluster (see joining_with).

Implementors