Trait paxakos::node::NodeImpl[][src]

pub trait NodeImpl: Node {
    fn append_impl<A, P, R>(
        &self,
        applicable: A,
        args: P
    ) -> LocalBoxFuture<'static, ImplAppendResultFor<Self, A, R>>
    where
        A: ApplicableTo<StateOf<Self>> + 'static,
        P: Into<AppendArgs<Self::Invocation, R>>,
        R: RetryPolicy<Invocation = Self::Invocation>
; }
Expand description

Exposes “plumbing” API relevant to decorations.

Required methods

Appends applicable to the shared log.

Implementors