Trait paxakos::Shutdown[][src]

pub trait Shutdown {
    type Invocation: Invocation;
    fn poll_shutdown(
        &mut self,
        cx: &mut Context<'_>
    ) -> Poll<ShutdownEvent<Self::Invocation>>; }
Expand description

A Node that is being shut_down.

Associated Types

Parametrization of the paxakos algorithm.

Required methods

Polls the node’s event stream, driving the shutdown to conclusion.

Implementors