pub trait Input: DispatcherMessageStream {
// Required method
fn actor_id(&self) -> ActorId;
// Provided method
fn boxed_input(self) -> BoxedInput
where Self: Sized + 'static { ... }
}
Expand description
Input
provides an interface for MergeExecutor
and
ReceiverExecutor
to receive data from upstream actors.