Trait acto_rs::elem::gather::Gather [] [src]

pub trait Gather {
    type InputValue: Send;
    type InputError: Send;
    type OutputValue: Send;
    type OutputError: Send;
    fn process(
        &mut self,
        input: &mut Vec<ChannelWrapper<Self::InputValue, Self::InputError>>,
        output: &mut Sender<Message<Self::OutputValue, Self::OutputError>>,
        stop: &mut bool
    ); }

Associated Types

Required Methods

Implementors